License constructor

License({
  1. String? firstName,
  2. String? lastName,
  3. String? middleName,
  4. DateTime? expirationDate,
  5. DateTime? issueDate,
  6. DateTime? dateOfBirth,
  7. Gender? gender,
  8. EyeColor? eyeColor,
  9. double? height,
  10. String? streetAddress,
  11. String? city,
  12. String? state,
  13. PostalCode? postalCode,
  14. String? customerId,
  15. String? uniqueCustomerId,
  16. required String? driversLicenseNumber,
  17. String? documentId,
  18. IssuingCountry? country,
  19. Truncation? middleNameTruncation,
  20. Truncation? firstNameTruncation,
  21. Truncation? lastNameTruncation,
  22. String? streetAddressSupplement,
  23. HairColor? hairColor,
  24. String? placeOfBirth,
  25. String? auditInformation,
  26. String? inventoryControlNumber,
  27. String? lastNameAlias,
  28. String? firstNameAlias,
  29. String? suffixAlias,
  30. NameSuffix? suffix,
  31. String? version,
  32. String? pdf417,
})

Implementation

License({
  this.firstName,
  this.lastName,
  this.middleName,
  this.expirationDate,
  this.issueDate,
  this.dateOfBirth,
  this.gender,
  this.eyeColor,
  this.height,
  this.streetAddress,
  this.city,
  this.state,
  this.postalCode,
  this.customerId,
  this.uniqueCustomerId,
  required this.driversLicenseNumber,
  this.documentId,
  this.country,
  this.middleNameTruncation,
  this.firstNameTruncation,
  this.lastNameTruncation,
  this.streetAddressSupplement,
  this.hairColor,
  this.placeOfBirth,
  this.auditInformation,
  this.inventoryControlNumber,
  this.lastNameAlias,
  this.firstNameAlias,
  this.suffixAlias,
  this.suffix,
  this.version,
  this.pdf417,
});