Contact constructor

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

Implementation

Contact({
  this.identifier,
  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,
  this.note,
  this.socialProfiles,
  this.urlAddresses,
});