onNotificationStatusChanged property

Stream<PushNotificationStatusChangedEvent> get onNotificationStatusChanged

Gets the push notification status changed event stream.

Implementation

Stream<PushNotificationStatusChangedEvent> get onNotificationStatusChanged {
  return _module
      .getEventStream("com.airship.flutter/event/notification_status_changed")
      .map((dynamic value) =>
          PushNotificationStatusChangedEvent.fromJson(value));
}