MyUserRow constructor

const MyUserRow({
  1. required String id,
  2. required String num,
  3. String? login,
  4. String? name,
  5. String? bio,
  6. required bool hasPassword,
  7. required String emails,
  8. required String phones,
  9. String? chatDirectLink,
  10. required int unreadChatsCount,
  11. String? status,
  12. String? avatar,
  13. String? callCover,
  14. required int presenceIndex,
  15. required bool online,
  16. String? muted,
  17. int? blocklistCount,
  18. PreciseDateTime? lastSeenAt,
  19. required String ver,
  20. String? welcomeMessage,
})

Implementation

const MyUserRow(
    {required this.id,
    required this.num,
    this.login,
    this.name,
    this.bio,
    required this.hasPassword,
    required this.emails,
    required this.phones,
    this.chatDirectLink,
    required this.unreadChatsCount,
    this.status,
    this.avatar,
    this.callCover,
    required this.presenceIndex,
    required this.online,
    this.muted,
    this.blocklistCount,
    this.lastSeenAt,
    required this.ver,
    this.welcomeMessage});