maxYValue property
The biggest y value for all points.
Will return null if there are no points.
Implementation
double? get maxYValue => isEmpty ? null : points.map((Point p) => p.offset.dy).reduce(max);
The biggest y value for all points.
Will return null if there are no points.
double? get maxYValue => isEmpty ? null : points.map((Point p) => p.offset.dy).reduce(max);