CountryModel constructor

CountryModel({
  1. required String isoCode,
  2. required String name,
  3. required String phoneCode,
  4. required String flag,
})

Implementation

CountryModel({
  required this.isoCode,
  required this.name,
  required this.phoneCode,
  required this.flag,
});