setRow method

void setRow(
  1. int i,
  2. List<double> row
)

Implementation

void setRow(int i, List<double> row) {
  values[i] = [...row];
}