append method

void append(
  1. List<T> other
)

Adds all of other's elements to this Vec.

Implementation

@pragma('vm:prefer-inline')
void append(List<T> other) => addAll(other);