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