NOTIFICATIONS property
final
Indicates permission to send web notifications.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_PERMISSION_KIND_NOTIFICATIONS)
Implementation
static final NOTIFICATIONS = PermissionResourceType._internalMultiPlatform(
'NOTIFICATIONS',
() {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 4;
default:
break;
}
return null;
},
);