min property

set min (double? v)

Implementation

set min(double? v) {
  if (_min == v) return;
  _min = v;
  markNeedsPaint();
}