Country constructor

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

Implementation

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