Person constructor

Person({
  1. PersonLinks? links,
  2. PersonAgreement? agreement,
  3. DateTime? createdAt,
  4. String? email,
  5. bool? enabled,
  6. String? familyName,
  7. String? givenName,
  8. String? id,
  9. String? jobTitle,
  10. required bool optIn,
  11. PersonPreferences? preferences,
  12. String? telephone,
  13. String? type,
  14. DateTime? updatedAt,
  15. String? username,
})

Returns a new Person instance.

Implementation

Person({
  this.links,
  this.agreement,
  this.createdAt,
  this.email,
  this.enabled,
  this.familyName,
  this.givenName,
  this.id,
  this.jobTitle,
  required this.optIn,
  this.preferences,
  this.telephone,
  this.type,
  this.updatedAt,
  this.username,
});