minLength method

FormValidator minLength(
  1. int value
)

Validate that the value is a minimum of value characters

Implementation

FormValidator minLength(int value) {
  _addRule("min:$value");
  return this;
}