debugLogError method

void debugLogError([
  1. dynamic message,
  2. Symbol? group
])

🔴 Logs an error message to the console.

Implementation

void debugLogError([
  dynamic message,
  Symbol? group,
]) {
  util_debug_log.debugLogError(
    message ?? '???',
    group ?? this.group,
    this,
  );
}