void printDebug( String message, { String? label = 'Loon', }) { if (Loon.isLoggingEnabled) { // ignore: avoid_print print('$label: $message'); } }