tapStream property
Stream broadcasting notification tap events with associated data
Implementation
@override
Stream<NotificationActionResult> get tapStream {
  _tapStream ??= StreamController<NotificationActionResult>.broadcast();
  return _tapStream!.stream;
}