HasUppercaseCharsValidator constructor
HasUppercaseCharsValidator({})
Constructor for the uppercase characters validator.
Implementation
HasUppercaseCharsValidator({
this.atLeast = 1,
/// {@macro upper_case_template}
RegExp? regex,
/// {@macro base_validator_error_text}
super.errorText,
/// {@macro base_validator_null_check}
super.checkNullOrEmpty,
}) : regex = regex ?? _upperCase;