info method
Abstract method to info a message or event (same as log()).
message
- The message or data to log.
event
- Optional. The specific log event associated with the message.
Implementation
@override
Future<void> info({dynamic message, LogEvent? event}) async {
await _logToMCP(level: LogLevel.info, message: message, event: event);
}