debugLogStart method

void debugLogStart([
  1. dynamic message,
  2. Symbol? group
])

🔵 Logs a start message to the console.

Implementation

void debugLogStart([
  dynamic message,
  Symbol? group,
]) {
  util_debug_log.debugLogStart(
    message ?? '???',
    group ?? this.group,
    this,
  );
}