WINDOW_MANAGEMENT property
final
Indicates permission to open and place windows on the screen. Permission is requested when developers use the Multi-Screen Window Placement API to get screen details.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_PERMISSION_KIND_WINDOW_MANAGEMENT)
Implementation
static final WINDOW_MANAGEMENT =
PermissionResourceType._internalMultiPlatform('WINDOW_MANAGEMENT', () {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 12;
default:
break;
}
return null;
});