Contact constructor

const 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<Contact$Field>? emails,
  11. List<Contact$Field>? phones,
  12. List<Contact$PostalAddress>? postalAddresses,
  13. Uint8List? avatar,
  14. DateTime? birthday,
  15. AndroidAccountType? androidAccountType,
  16. String? androidAccountTypeRaw,
  17. String? androidAccountName,
})

A model representing a contact.

Implementation

const 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,
});