max property
set
max
(double? v)
Implementation
set max(double? v) {
if (_max == v) return;
_max = v;
markNeedsPaint();
}
set max(double? v) {
if (_max == v) return;
_max = v;
markNeedsPaint();
}