IdentityVerificationRequestUser constructor

IdentityVerificationRequestUser({
  1. required String clientUserId,
  2. String? emailAddress,
  3. String? phoneNumber,
  4. String? dateOfBirth,
  5. UserName? name,
  6. UserAddress? address,
  7. UserIDNumber? idNumber,
})

Implementation

IdentityVerificationRequestUser({
  required this.clientUserId,
  this.emailAddress,
  this.phoneNumber,
  this.dateOfBirth,
  this.name,
  this.address,
  this.idNumber,
});