max property

int get max

Implementation

int get max => _max;
  1. @Input.new()
set max (int value)

Implementation

@Input()
set max(int value) {
  _max = value;
  _maxChanged = true;
}