info method
void
info(})
Logs a message with LogLevel.info.
Implementation
void info(
String message, {
Object? error,
StackTrace? stackTrace,
Map<String, Object?>? context,
bool printStackTrace = true,
bool printError = true,
}) =>
log(
message,
level: LogLevel.info,
error: error,
stackTrace: stackTrace,
context: context,
printStackTrace: printStackTrace,
printError: printError,
);