MrzResult constructor
MrzResult({})
Implementation
MrzResult(
{String? type,
String? nationality,
String? surname,
String? givenName,
String? passportNumber,
String? issuingCountry,
String? birthDate,
String? gender,
String? expiration,
String? lines})
: this.type = type ?? 'N/A',
this.nationality = nationality ?? 'N/A',
this.surname = surname ?? 'N/A',
this.givenName = givenName ?? 'N/A',
this.passportNumber = passportNumber ?? 'N/A',
this.issuingCountry = issuingCountry ?? 'N/A',
this.birthDate = birthDate ?? 'N/A',
this.gender = gender ?? 'N/A',
this.expiration = expiration ?? 'N/A',
this.lines = lines ?? 'N/A';