max property

int get max

Implementation

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

Implementation

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