tapStream property

  1. @override
Stream<NotificationActionResult> get tapStream
override

Stream broadcasting notification tap events with associated data

Implementation

@override
Stream<NotificationActionResult> get tapStream {
  _tapStream ??= StreamController<NotificationActionResult>.broadcast();
  return _tapStream!.stream;
}