Contact constructor

Contact({
  1. String id = "",
  2. String displayName = "",
  3. String phoneNumber = "",
  4. String email = "",
  5. String photoUri = "",
})

Implementation

Contact({
  this.id = "",
  this.displayName = "",
  this.phoneNumber = "",
  this.email = "",
  this.photoUri = "",
});