lowercase method
Validate that the value is lowercase
Implementation
FormValidator lowercase({String? message}) {
_addRule(FormRuleLowercase(message: message));
return this;
}
Validate that the value is lowercase
FormValidator lowercase({String? message}) {
_addRule(FormRuleLowercase(message: message));
return this;
}