MdChatUser constructor

MdChatUser({
  1. String? userId,
  2. String? nickname,
  3. String? profileUrl,
  4. String? phoneNumber,
  5. List? discoveryKeys,
  6. MdChatUserMetadata? metadata,
  7. bool? isActive,
  8. bool? hasEverLoggedIn,
  9. bool? isOnline,
  10. int? lastSeenAt,
  11. SessionToken? sessionToken,
  12. String? updatedTs,
  13. String? updatedBy,
  14. int? version,
})

Implementation

MdChatUser({
  this.userId,
  this.nickname,
  this.profileUrl,
  this.phoneNumber,
  this.discoveryKeys,
  this.metadata,
  this.isActive,
  this.hasEverLoggedIn,
  this.isOnline,
  this.lastSeenAt,
  this.sessionToken,
  this.updatedTs,
  this.updatedBy,
  this.version,
});