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