numeric method

FormValidator numeric({
  1. String? message,
})

Validate that the value is numeric

Implementation

FormValidator numeric({String? message}) {
  _addRule(FormRuleNumeric(message: message));
  return this;
}