pushBack method

void pushBack(
  1. T value
)

Adds an element to the end of the vector.

Implementation

void pushBack(T value) {
  _data.add(value);
}