PersonPatch constructor

PersonPatch({
  1. PersonPatchAgreement? agreement,
  2. String? givenName,
  3. String? familyName,
  4. String? email,
  5. String? jobTitle,
  6. String? image,
  7. bool? optIn,
  8. PersonPatchPreferences? preferences,
  9. String? telephone,
})

Returns a new PersonPatch instance.

Implementation

PersonPatch({
  this.agreement,
  this.givenName,
  this.familyName,
  this.email,
  this.jobTitle,
  this.image,
  this.optIn,
  this.preferences,
  this.telephone,
});