Certificate constructor

Certificate(
  1. String version,
  2. BirthDate dateOfBirth,
  3. Identity holder,
  4. List<Vaccine>? vaccines,
  5. List<Test>? tests,
  6. List<Recovery>? recoveries
)

Implementation

Certificate(this.version, this.dateOfBirth, this.holder, this.vaccines,
    this.tests, this.recoveries);