columnAt method

dynamic columnAt(
  1. int i
)

Returns the value stored in the i-th column in this row (zero-indexed).

Implementation

dynamic columnAt(int i) {
  return _data[i];
}