onShouldOpenNotificationSettings property

Stream<NotificareNotification?> onShouldOpenNotificationSettings

Implementation

static Stream<NotificareNotification?> get onShouldOpenNotificationSettings {
  return _getEventStream('should_open_notification_settings').map((result) {
    if (result == null) return null;

    final Map<dynamic, dynamic> json = result;
    return NotificareNotification.fromJson(json.cast());
  });
}