copy method

Iterable<E> copy()

Implementation

Iterable<E> copy() {
  return List<E>.from(this, growable: false);
}