hardAddAll method

void hardAddAll(
  1. Iterable<T> value
)

Appends all elements from the given iterable value to the list and notifies listeners.

  • value: The iterable containing elements to add.

Implementation

void hardAddAll(Iterable<T> value) {
  this.value.addAll(value);
  notify();
}