LoggerConsumer typedef
LoggerConsumer =
Future<void> Function(LogMessage message)
Log consumer function type Defines the signature for functions that can consume log messages Used for custom log handling implementations
Implementation
typedef LoggerConsumer = Future<void> Function(LogMessage message);