PhoneFormatSpec constructor

const PhoneFormatSpec({
  1. required String pattern,
  2. required String example,
  3. required int minLength,
  4. required int maxLength,
})

Implementation

const PhoneFormatSpec({
  required this.pattern,
  required this.example,
  required this.minLength,
  required this.maxLength,
});