append method
Adds all of other's elements to this Vec.
Implementation
@pragma('vm:prefer-inline')
void append(List<T> other) => addAll(other);
Adds all of other's elements to this Vec.
@pragma('vm:prefer-inline')
void append(List<T> other) => addAll(other);