MyUserRow constructor
const
MyUserRow({ - required String id,
- required String num,
- String? login,
- String? name,
- String? bio,
- required bool hasPassword,
- required String emails,
- required String phones,
- String? chatDirectLink,
- required int unreadChatsCount,
- String? status,
- String? avatar,
- String? callCover,
- required int presenceIndex,
- required bool online,
- String? muted,
- int? blocklistCount,
- PreciseDateTime? lastSeenAt,
- required String ver,
- 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});