DriverLicense constructor

const DriverLicense({
  1. String? addressCity,
  2. String? addressState,
  3. String? addressStreet,
  4. String? addressZip,
  5. String? birthDate,
  6. String? documentType,
  7. String? expiryDate,
  8. String? firstName,
  9. String? gender,
  10. String? issueDate,
  11. String? issuingCountry,
  12. String? lastName,
  13. String? licenseNumber,
  14. String? middleName,
})

Create a new DriverLicense.

Implementation

const DriverLicense({
  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.licenseNumber,
  this.middleName,
});