i method

void i(
  1. String title, [
  2. Object? exception,
  3. StackTrace? stackTrace
])

Implementation

void i(String title, [Object? exception, StackTrace? stackTrace]) =>
    addLogEvent(
      LogEvent(
        title,
        exception: exception,
        stackTrace: stackTraceConverter(stackTrace),
        level: Level.info,
      ),
    );