Country constructor

const Country({
  1. String? name,
  2. String? dialCode,
  3. String? code,
})

Implementation

const Country({
  this.name,
  this.dialCode,
  this.code,
});