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