onNotificationResponse property

Stream<NotificationResponseEvent> onNotificationResponse

Gets notification response event stream.

Implementation

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