notEmpty method
Validate that the value is not empty
Implementation
FormValidator notEmpty({String? message}) {
_addRule(FormRuleNotEmpty(message));
return this;
}
Validate that the value is not empty
FormValidator notEmpty({String? message}) {
_addRule(FormRuleNotEmpty(message));
return this;
}