User constructor

User({
  1. required IdCard idCard,
  2. String? faceImage,
  3. String? faceVideo,
  4. double? faceMatchValue,
  5. String? email,
  6. String? phoneNumber,
  7. String? firstName,
  8. String? middleName,
  9. String? lastName,
  10. String? personalIdentityCode,
  11. String? dateOfBirth,
  12. String? expiryDate,
  13. String? apiKey,
})

Implementation

User({
  required this.idCard,
  this.faceImage,
  this.faceVideo,
  this.faceMatchValue,
  this.email,
  this.phoneNumber,
  this.firstName,
  this.middleName,
  this.lastName,
  this.personalIdentityCode,
  this.dateOfBirth,
  this.expiryDate,
  this.apiKey,
});