UsernameValidator constructor
const
UsernameValidator({})
Constructor for the username validator.
Implementation
const UsernameValidator({
this.minLength = 3,
this.maxLength = 32,
this.allowNumbers = true,
this.allowUnderscore = false,
this.allowDots = false,
this.allowDash = false,
this.allowSpace = false,
this.allowSpecialChar = false,
/// {@macro username_validator_error_text}
super.errorText,
/// {@macro base_validator_null_check}
super.checkNullOrEmpty,
});