info method
void
info(})
Info level logging
Implementation
void info(Object? message,
{String? tag,
Object? error,
StackTrace? stackTrace,
Map<String, dynamic>? context}) {
_logger.info(message.toString(),
tag: tag, error: error, stackTrace: stackTrace, context: context);
}