WINDOW_MANAGEMENT property

PermissionResourceType WINDOW_MANAGEMENT
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:

Implementation

static final WINDOW_MANAGEMENT =
    PermissionResourceType._internalMultiPlatform('WINDOW_MANAGEMENT', () {
      switch (defaultTargetPlatform) {
        case TargetPlatform.windows:
          return 12;
        default:
          break;
      }
      return null;
    });