minXValue property
The smallest x value for all points.
Will return null if there are no points.
Implementation
double? get minXValue => isEmpty ? null : points.map((Point p) => p.offset.dx).reduce(min);
The smallest x value for all points.
Will return null if there are no points.
double? get minXValue => isEmpty ? null : points.map((Point p) => p.offset.dx).reduce(min);