Country constructor

const Country({
  1. required String name,
  2. required String isoCode,
  3. required String dialCode,
})

Implementation

const Country({
  required this.name,
  required this.isoCode,
  required this.dialCode,
});