Covid19CountryEx constructor

const Covid19CountryEx(
  1. {String country,
  2. String countryCode,
  3. String province,
  4. String city,
  5. String cityCode,
  6. String lat,
  7. String lon,
  8. int cases,
  9. String status,
  10. String date}
)

Implementation

const Covid19CountryEx(
    {this.country,
    this.countryCode,
    this.province,
    this.city,
    this.cityCode,
    this.lat,
    this.lon,
    this.cases,
    this.status,
    this.date});