User constructor
User( - UserId id,
- UserNum num, {
- UserName? name,
- UserBio? bio,
- UserAvatar? avatar,
- UserCallCover? callCover,
- int mutualContactsCount = 0,
- bool online = false,
- int? presenceIndex,
- UserTextStatus? status,
- bool isDeleted = false,
- ChatId? dialog,
- BlocklistRecord? isBlocked,
- PreciseDateTime? lastSeenAt,
- List<NestedChatContact> contacts = const [],
- 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;