withoutScope method

MssqlScopeSelection withoutScope(
  1. String name
)

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}),
  );
}