silentAddAll method

void silentAddAll(
  1. Iterable<T> values
)

Adds all elements from the given values to the set without notifying listeners.

  • values: The elements to add to the set.

Implementation

void silentAddAll(Iterable<T> values) => value.addAll(values);