BarcodeDriverLicense constructor

BarcodeDriverLicense({
  1. required String rawValue,
  2. String? addressCity,
  3. String? addressState,
  4. String? addressStreet,
  5. String? addressZip,
  6. DateTime? birthDate,
  7. String? documentType,
  8. DateTime? expiryDate,
  9. String? firstName,
  10. String? gender,
  11. DateTime? issueDate,
  12. String? issuingCountry,
  13. String? lastName,
  14. String? middleName,
  15. String? licenseNumber,
  16. String? jurisdiction,
  17. int? aamvaVersion,
  18. int? jurisdictionVersion,
  19. int? aamvaFieldsEntries,
})

Implementation

BarcodeDriverLicense({
  required String rawValue,
  this.addressCity,
  this.addressState,
  this.addressStreet,
  this.addressZip,
  this.birthDate,
  this.documentType,
  this.expiryDate,
  this.firstName,
  this.gender,
  this.issueDate,
  this.issuingCountry,
  this.lastName,
  this.middleName,
  this.licenseNumber,
  this.jurisdiction,
  this.aamvaVersion,
  this.jurisdictionVersion,
  this.aamvaFieldsEntries,
}) : super(valueType: BarcodeValueType.driverLicense, rawValue: rawValue);