max property

int max

Implementation

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

Implementation

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