push method
void
push(
- T element
Appends an element to the end of the Vec. Equivalent to add.
Implementation
@pragma('vm:prefer-inline')
void push(T element) => add(element);
Appends an element to the end of the Vec. Equivalent to add.
@pragma('vm:prefer-inline')
void push(T element) => add(element);