minYValue property

double? get minYValue
inherited

The smallest y value for all points. Will return null if there are no points.

Implementation

double? get minYValue => isEmpty ? null : points.map((Point p) => p.offset.dy).reduce(min);