LoggingMessageNotification constructor

LoggingMessageNotification({
  1. required LoggingLevel level,
  2. String? logger,
  3. required Object data,
  4. 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,
});