PhoneValidationRule constructor

PhoneValidationRule({
  1. required int minLength,
  2. required int maxLength,
  3. required String format,
})

Implementation

PhoneValidationRule({
  required this.minLength,
  required this.maxLength,
  required this.format,
});