i method

void i(
  1. Object? object, {
  2. String? tag,
})

Implementation

void i(Object? object, {String? tag}) {
  if (level.index > LogLevel.info.index) {
    return;
  }
  String t = tag == null ? 'I' : '$tag';
  _print(object, t, '32', LogLevel.info);
}