logger_utils.dart 189 Bytes Raw Blame History Permalink 1 2 3 4 5 6 mixin Logger { // Sample of abstract logging function static void write(String text, {bool isError = false}) { Future.microtask(() => print('** $text. isError: [$isError]')); } }