i static method

void i(
  1. Object object, {
  2. String? tag,
  3. bool? withSQLite,
  4. bool? withUp,
})

Info来表达一些信息。

Implementation

static void i(Object object, {String? tag, bool? withSQLite, bool? withUp}) {
  if (MiniLoggerLevelEnum.I >= _config.minPrintLevel) {
    _handleLog(MiniLoggerLevelEnum.I, object,
        tag: tag, withSQLite: withSQLite, withUp: withUp);
  }
}