debugLogInfo method

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

🟣 Logs an info message to the console.

Implementation

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