mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 17:23:20 +03:00
9 lines
165 B
Dart
9 lines
165 B
Dart
|
|
import 'package:flutter/foundation.dart';
|
||
|
|
|
||
|
|
@pragma('vm:prefer-inline')
|
||
|
|
void dPrint(String Function() message) {
|
||
|
|
if (kDebugMode) {
|
||
|
|
debugPrint(message());
|
||
|
|
}
|
||
|
|
}
|