onNotificationFailedToPresent property

Stream<NotificareNotification> onNotificationFailedToPresent

Implementation

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