CountryCases constructor

const CountryCases(
  1. {int newConfirmed,
  2. int totalConfirmed,
  3. int newDeaths,
  4. int totalDeaths,
  5. int newRecovered,
  6. int totalRecovered}
)

Implementation

const CountryCases(
    {this.newConfirmed,
    this.totalConfirmed,
    this.newDeaths,
    this.totalDeaths,
    this.newRecovered,
    this.totalRecovered});