Covid19CountryAllStatus constructor

Covid19CountryAllStatus(
  1. {String country,
  2. String countryCode,
  3. String province,
  4. String city,
  5. String cityCode,
  6. String lat,
  7. String lon,
  8. int confirmed,
  9. int deaths,
  10. int recovered,
  11. int active,
  12. String date}
)

Implementation

Covid19CountryAllStatus(
    {this.country,
    this.countryCode,
    this.province,
    this.city,
    this.cityCode,
    this.lat,
    this.lon,
    this.confirmed,
    this.deaths,
    this.recovered,
    this.active,
    this.date});