FormValidator.numeric constructor

FormValidator.numeric({
  1. 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";
}