Passport constructor

Passport({
  1. String? country,
  2. String? expiry,
  3. String? number,
})

Implementation

Passport({
  this.country,
  this.expiry,
  this.number,
});