onNotificationResponse property

  1. @override
Stream<NotificationResponse> get onNotificationResponse
override

Stream of notification responses (button clicks, taps)

Implementation

@override
Stream<NotificationResponse> get onNotificationResponse {
  _onNotificationResponse ??= eventChannel
      .receiveBroadcastStream()
      .map((dynamic event) => NotificationResponse.fromMap(
            Map<String, dynamic>.from(event as Map),
          ));
  return _onNotificationResponse!;
}