isValidStrings method

bool isValidStrings({
  1. int maxLength = 0,
  2. int minLength = 0,
  3. RegExp? regs,
})

Implementation

bool isValidStrings({
  int maxLength = 0,
  int minLength = 0,
  RegExp? regs,
}) {
  return Validator.isValidStrings(
    this ?? [],
    maxLength: maxLength,
    minLength: minLength,
    regs: regs,
  );
}