showOrUpdateOrCancelNotification property
Stream
get
showOrUpdateOrCancelNotification
A stream that emits events for showing, updating, or canceling notifications.
This stream provides updates related to the operation of showing, updating, or canceling notifications on the Mirrorfly platform. Each event contains information about the notification operation. Use this stream to manage notifications in your UI.
Usage example:
Mirrorfly.showOrUpdateOrCancelNotification.listen((notificationOperation) {
// Handle notification operations
print("Notification operation: $notificationOperation");
});
Implementation
static Stream<dynamic> get showOrUpdateOrCancelNotification =>
FlyChatFlutterPlatform.instance.showOrUpdateOrCancelNotification;