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