HasLowercaseCharsValidator constructor

HasLowercaseCharsValidator({
  1. int atLeast = 1,
  2. RegExp? regex,
  3. String? errorText,
  4. bool checkNullOrEmpty = true,
})

Constructor for the lowercase characters validator.

Implementation

HasLowercaseCharsValidator({
  this.atLeast = 1,

  /// {@macro lower_case_template}
  RegExp? regex,

  /// {@macro base_validator_error_text}
  super.errorText,

  /// {@macro base_validator_null_check}
  super.checkNullOrEmpty,
}) : regex = regex ?? _lowerCase;