onNotificationOpened property

Stream<NotificareNotification> onNotificationOpened

Implementation

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