LowerCaseRule constructor

LowerCaseRule({
  1. int minimumLowerCaseCharacters = 1,
  2. bool isMandatory = true,
  3. String? name,
})

Implementation

LowerCaseRule({
  this.minimumLowerCaseCharacters = 1,
  bool isMandatory = true,
  String? name,
}) : super(
        impact: minimumLowerCaseCharacters,
        mandatory: isMandatory,
        name: name ??
            "At least $minimumLowerCaseCharacters characters in lower case",
      );