notEmpty method

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

Validate that the value is not empty

Implementation

FormValidator notEmpty({String? message}) {
  _addRule(FormRuleNotEmpty(message));
  return this;
}