debugLogInfo method
🟣 Logs an info message to the console.
Implementation
void debugLogInfo([
dynamic message,
Symbol? group,
]) {
util_debug_log.debugLogInfo(
message ?? '???',
group ?? this.group,
this,
);
}
🟣 Logs an info message to the console.
void debugLogInfo([
dynamic message,
Symbol? group,
]) {
util_debug_log.debugLogInfo(
message ?? '???',
group ?? this.group,
this,
);
}