Country constructor

Country({
  1. required String code,
  2. String code2 = "",
  3. String name = "",
  4. String continent = "",
  5. String region = "",
})

Implementation

Country(
    {required this.code,
    this.code2 = "",
    this.name = "",
    this.continent = "",
    this.region = ""});