User constructor

User(
  1. UserId id,
  2. UserNum num, {
  3. UserName? name,
  4. UserBio? bio,
  5. UserAvatar? avatar,
  6. UserCallCover? callCover,
  7. int mutualContactsCount = 0,
  8. bool online = false,
  9. int? presenceIndex,
  10. UserTextStatus? status,
  11. bool isDeleted = false,
  12. ChatId? dialog,
  13. BlocklistRecord? isBlocked,
  14. PreciseDateTime? lastSeenAt,
  15. List<NestedChatContact> contacts = const [],
  16. WelcomeMessage? welcomeMessage,
})

Implementation

User(
  this.id,
  this.num, {
  this.name,
  this.bio,
  this.avatar,
  this.callCover,
  this.mutualContactsCount = 0,
  this.online = false,
  this.presenceIndex,
  this.status,
  this.isDeleted = false,
  ChatId? dialog,
  this.isBlocked,
  this.lastSeenAt,
  this.contacts = const [],
  this.welcomeMessage,
}) : _dialog = dialog;