shift method

dynamic shift()

Removes the first value in the row.

Implementation

dynamic shift() {
  return _data.removeAt(0);
}