i static method

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

Implementation

static void i(Object? object, {String? tag}) {
  defaultLogger.i(
    object,
    tag: tag,
  );
}