i static method

void i(
  1. String message, {
  2. dynamic ex,
  3. StackTrace? stacktrace,
  4. Map<String, String?>? attributes,
})

Logs INFO level message with optional exception and stacktrace

Implementation

static void i(
  String message, {
  dynamic ex,
  StackTrace? stacktrace,
  Map<String, String?>? attributes,
}) {
  log('I', message, ex: ex, stacktrace: stacktrace, attributes: attributes);
}