Country constructor

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

Implementation

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