updateMaxValue method
void
updateMaxValue()
Update the maxValue
property
Implementation
void updateMaxValue() {
final data = this.data;
double maxValue = data[0][0];
for (int i = 0; i != data.length; i++) {
for (int j = 0; j != data[i].length; j++) {
final v = data[i][j];
if (v > maxValue) {
maxValue = v;
}
}
}
this.maxValue = maxValue;
}