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