minLength property

int minLength

Implementation

int get minLength => _minLength;
  1. @Input('minlength')
void minLength=(int value)

Implementation

@Input('minlength')
set minLength(int value) {
  _minLength = value;
  minLengthAttr = value.toString();
}