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