debugLogStart method
🔵 Logs a start message to the console.
Implementation
void debugLogStart([
dynamic message,
Symbol? group,
]) {
util_debug_log.debugLogStart(
message ?? '???',
group ?? this.group,
this,
);
}
🔵 Logs a start message to the console.
void debugLogStart([
dynamic message,
Symbol? group,
]) {
util_debug_log.debugLogStart(
message ?? '???',
group ?? this.group,
this,
);
}