minLength property

int get minLength

Implementation

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

Implementation

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