onNotificationPresented property

Stream<NotificareNotification> onNotificationPresented

Implementation

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