Country constructor

Country({
  1. required String? id,
  2. required String name,
  3. required String countryCode,
  4. required String? countryCodeAlpha3,
})

Implementation

Country({
  required this.id,
  required this.name,
  required this.countryCode,
  required this.countryCodeAlpha3,
});