w static method
void
w({
- String tag = '',
- XKitLogType type = XKitLogType.normal,
- String moduleName = '',
- required String content,
warn 打印 参数同 verbose
Implementation
static void w({
String tag = '',
XKitLogType type = XKitLogType.normal,
String moduleName = '',
required String content,
}) {
_platform.warn(tag, type, moduleName, 0, 0, content);
}