lengthRange static method
Validates that the length of the entered text
as at least minLength
but no more than maxLength
.
Implementation
static AskValidator lengthRange(int minLength, int maxLength) =>
_AskValidatorLength(minLength, maxLength);