i method
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');
}
}