noSpecialChars method
Ensures there are no special characters.
Implementation
Validator noSpecialChars({String allowed = '', String? message}) {
_rules.add(
NoSpecialCharsRule(message ?? _messages.noSpecialChars, allowed: allowed),
);
return this;
}