AddRange method

void AddRange(
  1. Iterable<String> strings
)
Adds multiple strings to the list. The strings to add.

Implementation

void AddRange(Iterable<String> strings) {
  bool changed = false;

  for (String s in strings) {
    if (!this.Contains(s)) {
      this._items.add(s);
      changed = true;
    }
  }

  if (changed) {
    this.Changed();
  }
}