Country constructor

const Country(
  1. String name,
  2. String flag,
  3. String countryCode,
  4. String callingCode
)

Implementation

const Country(this.name, this.flag, this.countryCode, this.callingCode);