Country constructor

Country({
  1. String? countryCode,
  2. String? dartId,
  3. String? kind,
  4. String? name,
  5. bool? sslEnabled,
})

Implementation

Country({
  this.countryCode,
  this.dartId,
  this.kind,
  this.name,
  this.sslEnabled,
});