initialize method
Future<bool>
initialize({
- required WindowsInitializationSettings settings,
- DidReceiveNotificationResponseCallback? onDidReceiveNotificationResponse,
Initializes the plugin. No other method should be called before this.
Implementation
@override
Future<bool> initialize({
required WindowsInitializationSettings settings,
DidReceiveNotificationResponseCallback? onDidReceiveNotificationResponse,
}) async {
throw UnsupportedError(
'This platform does not support Windows notifications',
);
}