Country constructor

Country(
  1. IsoCode isoCode,
  2. String name
)

Implementation

Country(this.isoCode, this.name)
    : countryCode = metadataByIsoCode[isoCode]?.countryCode ?? '';