onAuthorizedSettingsChanged property

Gets the authorized settings changed event stream.

Implementation

Stream<
    IOSAuthorizedNotificationSettingsChangedEvent> get onAuthorizedSettingsChanged {

  if (!Platform.isIOS) {
    return Stream.empty();
  }

  return _module
      .getEventStream(
      "com.airship.flutter/event/ios_authorized_notification_settings_changed")
      .map((dynamic value) =>
      IOSAuthorizedNotificationSettingsChangedEvent.fromJson(value));
}