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());
|
|
}
|
|
}
|