Countries constructor

Countries({
  1. String? code,
  2. String? name,
  3. List<State>? states,
  4. Links? links,
})

Implementation

Countries({
  this.code,
  this.name,
  this.states,
  this.links,
});