FormValidator.numeric constructor
FormValidator.numeric({
- String? message,
Validate that the value is numeric
message
The message to display if the value is invalid
Implementation
FormValidator.numeric({this.message}) {
rules = "numeric";
}