Contact constructor
Contact({
- String? fullName,
- List<
String> ? phoneNumbers, - String? workPhoneNumber,
- String? homePhoneNumber,
- String? mobilePhoneNumber,
- String? selectedPhoneNumber,
- List<
EmailAddress> ? emailAddresses, - String? avatar,
- List<
PostalAddress> ? postalAddresses, - OrganizationInfo? organizationInfo,
- String? birthday,
- String? notes,
- 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,
});