max property

int? get max

Implementation

int? get max => _max;
set max (int? value)

Implementation

set max(int? value) {
  _max = value;
}