i static method

Future<void> i({
  1. String? tag,
  2. required String msg,
  3. int stackDepth = 0,
  4. int logType = 2,
  5. bool writeFile = false,
})

Implementation

static Future<void> i({String? tag, required String msg, int stackDepth = 0, int logType = 2, bool writeFile = false}) async {
  await log('i', tag, msg, stackDepth, logType, writeFile);
}