onNotificationActionOpened property

Stream<NotificareNotificationActionOpenedEvent> onNotificationActionOpened

Implementation

static Stream<NotificareNotificationActionOpenedEvent>
    get onNotificationActionOpened {
  return _getEventStream('notification_action_opened').map((result) {
    final Map<dynamic, dynamic> json = result;
    return NotificareNotificationActionOpenedEvent.fromJson(json.cast());
  });
}