logger_utils.dart 180 Bytes Raw Blame History Permalink 1 2 3 4 5 6 class Logger { // Sample of abstract logging function static void write(String text, {bool isError = false}) { print('** ' + text + ' [' + isError.toString() + ']'); } }