MyUser constructor
MyUser({ - required UserId id,
- required UserNum num,
- UserLogin? login,
- UserName? name,
- UserBio? bio,
- bool hasPassword = false,
- required MyUserEmails emails,
- required MyUserPhones phones,
- ChatDirectLink? chatDirectLink,
- int unreadChatsCount = 0,
- UserTextStatus? status,
- UserAvatar? avatar,
- UserCallCover? callCover,
- required int presenceIndex,
- required bool online,
- MuteDuration? muted,
- PreciseDateTime? lastSeenAt,
- WelcomeMessage? welcomeMessage,
})
Implementation
MyUser({
required this.id,
required this.num,
this.login,
this.name,
this.bio,
this.hasPassword = false,
required this.emails,
required this.phones,
this.chatDirectLink,
this.unreadChatsCount = 0,
this.status,
this.avatar,
this.callCover,
required this.presenceIndex,
required this.online,
this.muted,
this.lastSeenAt,
this.welcomeMessage,
});