ShowNotificationExtensionEvent constructor

ShowNotificationExtensionEvent({
  1. required String message,
})

Implementation

ShowNotificationExtensionEvent({required String message})
    : super(
        DevToolsExtensionEventType.showNotification,
        data: {_messageKey: message},
      );