isReply property
bool
get
isReply
Whether this message is a reply to another message.
Returns true if both replyToMessageId and replyToSnapshot are not null.
Implementation
bool get isReply => replyToMessageId != null && replyToSnapshot != null;