double get value => _value;
set value(double v) { if (v < min) { v = min; } else if (v > max) { v = max; } _value = v; }