ExtractedDocumentData constructor

ExtractedDocumentData({
  1. String? firstName,
  2. String? lastName,
  3. String? middleName,
  4. String? phoneNumber,
  5. String? email,
  6. String? dateOfBirth,
  7. String? gender,
  8. String? documentNumber,
  9. String? documentType,
  10. String? imageByte,
})

Implementation

ExtractedDocumentData({
  this.firstName,
  this.lastName,
  this.middleName,
  this.phoneNumber,
  this.email,
  this.dateOfBirth,
  this.gender,
  this.documentNumber,
  this.documentType,
  this.imageByte,
});