getValues method

List<List<double>> getValues()

Implementation

List<List<double>> getValues() {
  return [for (var row in values) List.from(row)];
}