get method Null safety
override
Implementation
@override
Value get(int row, int col) {
checkIndices(row, col);
final swaps = _rowSwaps;
if (swaps != null) {
row = swaps[row];
}
return _values[row * columns + col];
}
@override
Value get(int row, int col) {
checkIndices(row, col);
final swaps = _rowSwaps;
if (swaps != null) {
row = swaps[row];
}
return _values[row * columns + col];
}