silentRemove method
Removes the given value from the set without notifying listeners.
value: The element to remove.- Returns:
trueif the element was removed,falseotherwise.
Implementation
bool silentRemove(Object? value) => this.value.remove(value);