push method

void push(
  1. num value
)

Adds a new value at the end of the row.

Implementation

void push(num value) {
  _data.add(value);
}