CountryModel constructor

CountryModel({
  1. required String id,
  2. required String name,
})

Implementation

CountryModel({
  required this.id,
  required this.name,
});