v static method

void v({
  1. String tag = '',
  2. XKitLogType type = XKitLogType.normal,
  3. String moduleName = '',
  4. required String content,
})

verbose 打印 tag tag 说明 type 0-普通log,1-api log moduleName 模块名称 content 日志内容

Implementation

static void v({
  String tag = '',
  XKitLogType type = XKitLogType.normal,
  String moduleName = '',
  required String content,
}) {
  _platform.verbose(tag, type, moduleName, 0, 0, content);
}