ProfileData constructor

ProfileData({
  1. String? email,
  2. String? image,
  3. bool? isAdminBlocked,
  4. bool? isBlocked,
  5. bool? isBlockedMe,
  6. bool? isGroupAdmin,
  7. bool? isGroupInOfflineMode,
  8. bool? isGroupProfile,
  9. bool? isItSavedContact,
  10. bool? isMuted,
  11. bool? isSelected,
  12. String? jid,
  13. String? mobileNumber,
  14. String? name,
  15. String? nickName,
  16. String? status,
  17. String? thumbImage,
})

Initializes a new instance of the ProfileData class.

Implementation

ProfileData({
  this.email,
  this.image,
  this.isAdminBlocked,
  this.isBlocked,
  this.isBlockedMe,
  this.isGroupAdmin,
  this.isGroupInOfflineMode,
  this.isGroupProfile,
  this.isItSavedContact,
  this.isMuted,
  this.isSelected,
  this.jid,
  this.mobileNumber,
  this.name,
  this.nickName,
  this.status,
  this.thumbImage,
});