i static method

void i(
  1. String tag,
  2. String msg
)

Info log

Implementation

static void i(String tag, String msg) {
  if (!infoLogsEnabled) return;
  debugPrint("[INFO][$tag]: $msg");
}