DriverInfo constructor

DriverInfo({
  1. String? avenue,
  2. String? certificateNumber,
  3. String? certificateType,
  4. String? city,
  5. String? countryOfIssue,
  6. String? dateOfBirth,
  7. String? dateOfExpire,
  8. String? dateOfIssue,
  9. String? familyName,
  10. String? givenName,
  11. String? middleName,
  12. String? province,
  13. String? sex,
  14. String? zipCode,
})

Implementation

DriverInfo({
  this.avenue,
  this.certificateNumber,
  this.certificateType,
  this.city,
  this.countryOfIssue,
  this.dateOfBirth,
  this.dateOfExpire,
  this.dateOfIssue,
  this.familyName,
  this.givenName,
  this.middleName,
  this.province,
  this.sex,
  this.zipCode,
});