Contact constructor

const Contact({
  1. int? id,
  2. String? uid,
  3. String? companyUid,
  4. String? profilePicture,
  5. String? firstName,
  6. String? lastName,
  7. dynamic email,
  8. String? phoneNumber,
  9. dynamic instagramUsername,
  10. dynamic instagramId,
  11. String? facebookUsername,
  12. String? facebookId,
  13. dynamic twitterUsername,
  14. dynamic twitterId,
  15. String? isBlocked,
  16. DateTime? createdAt,
  17. DateTime? updatedAt,
})

Implementation

const Contact({
  this.id,
  this.uid,
  this.companyUid,
  this.profilePicture,
  this.firstName,
  this.lastName,
  this.email,
  this.phoneNumber,
  this.instagramUsername,
  this.instagramId,
  this.facebookUsername,
  this.facebookId,
  this.twitterUsername,
  this.twitterId,
  this.isBlocked,
  this.createdAt,
  this.updatedAt,
});