Country constructor

Country(
  1. String code,
  2. String name
)

Default constructor

Implementation

Country(this.code, this.name);