e static method

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

Implementation

static void e(
    {String tag = '',
    AlogType type = AlogType.normal,
    String moduleName = '',
    String content = ''}) {
  js.context['console']
      .callMethod('error', [tag, type.index, moduleName, 0, content]);
}