withoutScope method
Switches one named global scope off.
Implementation
MssqlScopeSelection withoutScope(String name) {
if (isOff(name)) return this;
return MssqlScopeSelection(
trashed: trashed,
withoutScopes: Set<String>.unmodifiable(<String>{...withoutScopes, name}),
);
}