Country constructor

Country({
  1. String? countryCode,
  2. String? countryName,
})

Implementation

Country({
  this.countryCode,
  this.countryName,
});