isSeenByMe property

bool get isSeenByMe

Implementation

bool get isSeenByMe {
  if (isSentByMe) return true;
  if (isSending) return true;
  return statusFor(me) == MessageStatus.seen;
}