addRange method

void addRange(
  1. list other
)

Implementation

void addRange(list other) {
  _list.addAll(other.toList());
}