PlatformWebNotificationController class abstract
Class representing a web notification controller.
This class provides methods to report the notification has been displayed, clicked, or closed as required by the ICoreWebView2Notification interface.
- Inheritance
-
- Object
- PlatformInterface
- PlatformWebNotificationController
- Implemented types
- Annotations
-
- @SupportedPlatforms.new(platforms: [WindowsPlatform()])
Constructors
- PlatformWebNotificationController(PlatformWebNotificationControllerCreationParams params)
-
Creates a new PlatformWebNotificationController
factory
- PlatformWebNotificationController.implementation(PlatformWebNotificationControllerCreationParams params)
- Used by the platform implementation to create a new PlatformWebNotificationController.
- PlatformWebNotificationController.static()
-
Creates a new empty PlatformWebNotificationController to access static methods.
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- id → String
-
Web notification ID.
no setter
- notification → WebNotification
-
The notification data.
no setter
- onClose ↔ WebNotificationCloseHandler?
-
Event fired when the notification is closed by the web code, such as through
notification.close().getter/setter pair - params → PlatformWebNotificationControllerCreationParams
-
The parameters used to initialize the PlatformWebNotificationController.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
dispose(
) → void -
Disposes the web notification controller.
override
-
isClassSupported(
{TargetPlatform? platform}) → bool -
Check if the current class is supported by the defaultTargetPlatform or a specific
platform. -
isMethodSupported(
PlatformWebNotificationControllerMethod method, {TargetPlatform? platform}) → bool -
Check if the given
methodis supported by the defaultTargetPlatform or a specificplatform. -
isPropertySupported(
dynamic property, {TargetPlatform? platform}) → bool -
Check if the given
propertyis supported by the defaultTargetPlatform or a specificplatform. The property should be one of the PlatformWebNotificationControllerProperty or PlatformWebNotificationControllerCreationParamsProperty values. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
reportClicked(
) → Future< void> - The host may run this to report the notification has been clicked, and it will cause the click event to be raised for non-persistent notifications and the notificationclick event for persistent notifications.
-
reportClosed(
) → Future< void> - The host may run this to report the notification was dismissed, and it will cause the close event to be raised for non-persistent notifications and the notificationclose event for persistent notifications.
-
reportShown(
) → Future< void> - The host may run this to report the notification has been displayed and it will cause the show event to be raised for non-persistent notifications.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited