isReadBy method
Indicates whether the provided ChatItem was read by the given user
.
Implementation
bool isReadBy(ChatItem item, UserId? user) {
return lastReads
.firstWhereOrNull((e) => e.memberId == user)
?.at
.isBefore(item.at) ==
false;
}