max property

int get max

The maximum slider value.

Implementation

int get max => _max;
set max (int v)

Sets the maximum slider value.

Implementation

set max(int v) {
  _max = v;
  _invalidateCache();
}