validateMinLength static method
Implementation
static String? validateMinLength(String? value, int minLength, String fieldName) {
if (value == null || value.isEmpty) {
return '$fieldName is required';
} else if (value.length < minLength) {
return '$fieldName must be at least $minLength characters';
}
return null;
}