i method
Logs INFO level message
with optional exception and stacktrace
Implementation
void i(
  String message, {
  dynamic ex,
  StackTrace? stacktrace,
  Map<String, String?>? attributes,
}) {
  _log(
    "I",
    tag,
    message,
    ex: ex,
    stacktrace: stacktrace,
    attributes: attributes,
  );
}