UserRow constructor
const
UserRow({ - required String id,
- required String num,
- String? name,
- String? bio,
- String? avatar,
- String? callCover,
- required int mutualContactsCount,
- required bool online,
- int? presenceIndex,
- String? status,
- required bool isDeleted,
- String? dialog,
- String? isBlocked,
- PreciseDateTime? lastSeenAt,
- required String contacts,
- required String ver,
- required String blockedVer,
- String? welcomeMessage,
})
Implementation
const UserRow(
{required this.id,
required this.num,
this.name,
this.bio,
this.avatar,
this.callCover,
required this.mutualContactsCount,
required this.online,
this.presenceIndex,
this.status,
required this.isDeleted,
this.dialog,
this.isBlocked,
this.lastSeenAt,
required this.contacts,
required this.ver,
required this.blockedVer,
this.welcomeMessage});