e static method

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

error 打印 参数同 verbose

Implementation

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