Contact constructor

Contact(
  1. List<LandlinePhone> landlinePhones,
  2. List<MobilePhone> mobilePhones,
  3. List<EmailAddress> emails,
  4. List<WebsiteAddress> websites,
)

Creates a new instance.

  • landlinePhones The list of landline phone numbers with associated categories. This data is not available in offline search.
  • mobilePhones The list of mobile phones numbers with associated categories. This data is not available in offline search.
  • emails The list of email addresses with associated categories. This data is not available in offline search.
  • websites The list of website addresses with associated categories. This data is not available in offline search.

Implementation

Contact(this.landlinePhones, this.mobilePhones, this.emails, this.websites);