LoggingMessageNotification constructor
LoggingMessageNotification({
- required LoggingLevel level,
- String? logger,
- required Object data,
- Meta? meta,
Implementation
factory LoggingMessageNotification({
required LoggingLevel level,
String? logger,
required Object data,
Meta? meta,
}) => LoggingMessageNotification.fromMap({
Keys.level: level.name,
if (logger != null) Keys.logger: logger,
Keys.data: data,
if (meta != null) Keys.meta: meta,
});