minLength property

int minLength

Implementation

int get minLength => int.tryParse(getAttribute('minlength') ?? '') ?? -1;
void minLength=(int value)

Implementation

set minLength(int value) {
  if (value.isNegative || value == 0) value = -1;
  internalSetAttribute('minlength', value.toString());
}