Country constructor

const Country({
  1. required String name,
  2. required String countryCode,
})

Instantiates an Country with the specified name, and countryCode

Implementation

const Country({
  required this.name,
  required this.countryCode,
});