silentAdd method

bool silentAdd(
  1. T value
)

Adds the given value to the set without notifying listeners.

  • value: The element to add to the set.
  • Returns: true if the value was added, false otherwise.

Implementation

bool silentAdd(T value) => this.value.add(value);