Vaccine constructor

const Vaccine(
  1. Target target,
  2. Prophylaxis prophylaxis,
  3. String identifier,
  4. Country country,
  5. Product product,
  6. Manufacturer manufacturer,
  7. int doses,
  8. int totalDoses,
  9. DateTime date,
  10. String issuer,
)

Implementation

const Vaccine(
    this.target,
    this.prophylaxis,
    this.identifier,
    this.country,
    this.product,
    this.manufacturer,
    this.doses,
    this.totalDoses,
    this.date,
    this.issuer);