UNKNOWN property

PermissionResourceType UNKNOWN
final

Indicates an unknown permission.

Officially Supported Platforms/Implementations:

Implementation

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