log method

void log(
  1. String msg
)

Implementation

void log(String msg) {
  if (debugMode) print('🔍 [DEBUG] $msg');
}