onNotificationActionOpened property

Stream<NotificareNotificationActionOpenedEvent> get onNotificationActionOpened

Called when a push notification action is opened by the user.

It will provide a NotificareNotificationActionOpenedEvent containing the NotificareNotificationAction opened by the user and the NotificareNotification containing it.

Implementation

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