MyUser constructor

MyUser({
  1. required UserId id,
  2. required UserNum num,
  3. UserLogin? login,
  4. UserName? name,
  5. UserBio? bio,
  6. bool hasPassword = false,
  7. required MyUserEmails emails,
  8. required MyUserPhones phones,
  9. ChatDirectLink? chatDirectLink,
  10. int unreadChatsCount = 0,
  11. UserTextStatus? status,
  12. UserAvatar? avatar,
  13. UserCallCover? callCover,
  14. required int presenceIndex,
  15. required bool online,
  16. MuteDuration? muted,
  17. PreciseDateTime? lastSeenAt,
  18. 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,
});