onNotificationResponse property
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!;
}