info function
Logs message with LogSeverity.info severity.
Example:
logger.info(
'User signed in successfully',
{'provider': 'google.com'},
);
Implementation
void info(
String message, [
Map<String, dynamic> payload = const {},
StackTrace? stackTrace,
]) => write(LogSeverity.info, message, payload, stackTrace);