alphaNumeric method

Validator alphaNumeric({
  1. String? message,
})

Ensures the value contains only alphanumeric characters.

Implementation

Validator alphaNumeric({String? message}) {
  _rules.add(AlphaNumericRule(message ?? _messages.alphaNumeric));
  return this;
}