Contact constructor

Contact({
  1. String? displayName,
  2. String? givenName,
  3. String? middleName,
  4. String? prefix,
  5. String? suffix,
  6. String? familyName,
  7. String? company,
  8. String? jobTitle,
  9. List<Item>? emails,
  10. List<Item>? phones,
  11. List<PostalAddress>? postalAddresses,
  12. Uint8List? avatar,
  13. DateTime? birthday,
  14. AndroidAccountType? androidAccountType,
  15. String? androidAccountTypeRaw,
  16. String? androidAccountName,
})

Implementation

Contact({
  this.displayName,
  this.givenName,
  this.middleName,
  this.prefix,
  this.suffix,
  this.familyName,
  this.company,
  this.jobTitle,
  this.emails,
  this.phones,
  this.postalAddresses,
  this.avatar,
  this.birthday,
  this.androidAccountType,
  this.androidAccountTypeRaw,
  this.androidAccountName,
});