PassportModel constructor

const PassportModel({
  1. String? documentType,
  2. String? issuingCountry,
  3. String? surname,
  4. String? givenNames,
  5. String? passportNumber,
  6. String? nationality,
  7. String? birthDate,
  8. String? gender,
  9. String? expiryDate,
  10. String? personalNumber,
  11. String? compositeCheckDigit,
  12. String? mrz1,
  13. String? mrz2,
})

Implementation

const PassportModel({
  this.documentType,
  this.issuingCountry,
  this.surname,
  this.givenNames,
  this.passportNumber,
  this.nationality,
  this.birthDate,
  this.gender,
  this.expiryDate,
  this.personalNumber,
  this.compositeCheckDigit,
  this.mrz1,
  this.mrz2,
});