Country constructor

Country({
  1. required String name,
  2. required String dialCode,
  3. required String image,
  4. required String iso3Code,
  5. required String isoCode,
})

Implementation

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