i static method

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

打印info日志

Implementation

static void i(Object object, {String? tag}) {
  if (_debugMode) {
    _printLog(tag, ' i ', object);
  }
}