BarcodeDriverLicense constructor

BarcodeDriverLicense({
  1. String? addressCity,
  2. String? addressState,
  3. String? addressZip,
  4. String? addressStreet,
  5. String? issueDate,
  6. String? birthDate,
  7. String? expiryDate,
  8. String? gender,
  9. String? licenseNumber,
  10. String? firstName,
  11. String? lastName,
  12. String? country,
})

Constructor to create an instance of BarcodeDriverLicense.

Implementation

BarcodeDriverLicense({
  this.addressCity,
  this.addressState,
  this.addressZip,
  this.addressStreet,
  this.issueDate,
  this.birthDate,
  this.expiryDate,
  this.gender,
  this.licenseNumber,
  this.firstName,
  this.lastName,
  this.country,
});