Country constructor

Country({
  1. required String id,
  2. required String name,
  3. required String image,
  4. required String country_code,
})

Implementation

Country({required this.id, required this.name, required this.image, required this.country_code});