Country constructor

const Country({
  1. required String name,
  2. required String flag,
  3. required String code,
  4. required String dialCode,
  5. required int minLength,
  6. required int maxLength,
})

Implementation

const Country({
  required this.name,
  required this.flag,
  required this.code,
  required this.dialCode,
  required this.minLength,
  required this.maxLength,
});