i static method

void i(
  1. String tag,
  2. String msg, {
  3. List<String>? references,
})

Logging information

tag page name or class name of the event origins msg log message references more event references such as\n method name or function name for further identification

Implementation

static void i(String tag, String msg, {List<String>? references}) {
  final ref = references != null && references.isNotEmpty
      ? ' : ${references.join(' => ')}'
      : '';
  final name = 'INFO: $tag$ref';
  _log(name, msg);
}