onNotificationDismissed property

Stream<String> get onNotificationDismissed

Stream of dismissed notification IDs from both Firebase and Local sources.

Implementation

Stream<String> get onNotificationDismissed {
  return StreamGroup.merge(<Stream<String>>[
    _firebaseRepository.onNotificationDismissed,
    _localRepository.onNotificationDismissed,
  ]);
}