i method

void i(
  1. String message
)

Logs an informational message.

The informational message is displayed with the prefix INFO.

Example:

logger.i('App started successfully');

Implementation

void i(String message) {
  if (_shouldLog()) {
    debugPrint('INFO: $message');
  }
}