Contact constructor

Contact({
  1. String? fullName,
  2. List<String>? phoneNumbers,
  3. String? workPhoneNumber,
  4. String? homePhoneNumber,
  5. String? mobilePhoneNumber,
  6. String? selectedPhoneNumber,
  7. List<EmailAddress>? emailAddresses,
  8. String? avatar,
  9. List<PostalAddress>? postalAddresses,
  10. OrganizationInfo? organizationInfo,
  11. String? birthday,
  12. String? notes,
  13. List<String>? websiteURLs,
})

Creates a Contact instance with all possible contact details.

Implementation

Contact({
  this.fullName,
  this.phoneNumbers,
  this.workPhoneNumber,
  this.homePhoneNumber,
  this.mobilePhoneNumber,
  this.selectedPhoneNumber,
  this.emailAddresses,
  this.avatar,
  this.postalAddresses,
  this.organizationInfo,
  this.birthday,
  this.notes,
  this.websiteURLs,
});