actionStream property

  1. @override
Stream<NotificationActionResult> get actionStream
override

Stream broadcasting notification click events with associated data & action

Implementation

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