CLIPBOARD_READ property

PermissionResourceType CLIPBOARD_READ
final

Indicates permission to read the system clipboard without a user gesture.

Officially Supported Platforms/Implementations:

Implementation

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