minLength static method
Fails when the value is shorter than length characters.
Implementation
static FormFieldValidator<String> minLength(int length, [String? message]) =>
(value) => (value ?? '').length < length
? (message ?? 'Must be at least $length characters')
: null;