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