silentRemove method

bool silentRemove(
  1. Object? value
)

Removes the first occurrence of the given value from the list without notifying listeners.

  • value: The element to remove.
  • Returns: true if the element was removed, false otherwise.

Implementation

bool silentRemove(Object? value) => this.value.remove(value);