i static method

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

Implementation

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