PatchedUserProfile constructor

PatchedUserProfile({
  1. bool? agreedToTerms,
  2. String? gender,
  3. String? phoneNumber,
  4. String? firstName,
  5. String? lastName,
  6. String? skypeAddress,
  7. String? photo,
  8. DateTime? dateOfBirth,
  9. String? email,
  10. bool? isActive,
  11. bool? emailVerified,
  12. bool? isPhoneConfirmed,
})

Returns a new PatchedUserProfile instance.

Implementation

PatchedUserProfile({
  this.agreedToTerms,
  this.gender,
  this.phoneNumber,
  this.firstName,
  this.lastName,
  this.skypeAddress,
  this.photo,
  this.dateOfBirth,
  this.email,
  this.isActive,
  this.emailVerified,
  this.isPhoneConfirmed,
});