v static method

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

Verbose就是冗长啰嗦的。通常表达开发调试过程中的一些详细信息。

Implementation

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