UserRow constructor

const UserRow({
  1. required String id,
  2. required String num,
  3. String? name,
  4. String? bio,
  5. String? avatar,
  6. String? callCover,
  7. required int mutualContactsCount,
  8. required bool online,
  9. int? presenceIndex,
  10. String? status,
  11. required bool isDeleted,
  12. String? dialog,
  13. String? isBlocked,
  14. PreciseDateTime? lastSeenAt,
  15. required String contacts,
  16. required String ver,
  17. required String blockedVer,
  18. 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});