Files
intaleq/packages/get/example/lib/shared/logger/logger_utils.dart
2026-04-16 19:45:03 +03:00

7 lines
189 B
Dart

mixin Logger {
// Sample of abstract logging function
static void write(String text, {bool isError = false}) {
Future.microtask(() => print('** $text. isError: [$isError]'));
}
}