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