noSpecialChars static method
Ensures there are no special characters.
FormRules.noSpecialChars(allowed: '-_').build()
Implementation
static Validator noSpecialChars({String allowed = '', String? message}) =>
Validator._()..noSpecialChars(allowed: allowed, message: message);