addAll method

bool addAll(
  1. dynamic coll
)

Implementation

bool addAll(coll) {
  for (ATNConfig c in coll) {
    add(c);
  }
  return false;
}