onNotificationWillPresent property

Stream<NotificareNotification> onNotificationWillPresent

Implementation

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