isInstallableScope function

bool isInstallableScope(
  1. PluginScope scope
)

Type guard for installable scopes.

Implementation

bool isInstallableScope(PluginScope scope) {
  return validInstallableScopes.contains(scope);
}