HexadecimalValidator constructor
Constructor for the hexadecimal validator.
Implementation
HexadecimalValidator({
/// {@macro hexadecimal_regex_template}
RegExp? regex,
/// {@macro base_validator_error_text}
super.errorText,
/// {@macro base_validator_null_check}
super.checkNullOrEmpty,
}) : regex = regex ?? _hexadecimalRegex;