Person constructor

Person({
  1. List<EmailAddress>? emailAddresses,
  2. String? name,
  3. String? obfuscatedId,
  4. List<Name>? personNames,
  5. List<PhoneNumber>? phoneNumbers,
  6. List<Photo>? photos,
})

Implementation

Person({
  this.emailAddresses,
  this.name,
  this.obfuscatedId,
  this.personNames,
  this.phoneNumbers,
  this.photos,
});