required static method
Validator that requires controls to have a non-empty value.
Implementation
static Map<String, bool>? required(model_module.AbstractControl control) {
return control.value == null || control.value == ''
? {'required': true}
: null;
}