columnAt method
Returns the value stored in the i
-th column in this row (zero-indexed).
Implementation
dynamic columnAt(int i) {
return _data[i];
}
Returns the value stored in the i
-th column in this row (zero-indexed).
dynamic columnAt(int i) {
return _data[i];
}