onNotificationFinishedPresenting property

Stream<NotificareNotification> onNotificationFinishedPresenting

Implementation

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