isReply method

bool isReply()

Checks if the message is a reply to another message.

Example:

if (ctx.isReply()) {
  await ctx.reply('You replied to a message!');
}

Implementation

bool isReply() {
  return msg?.replyToMessage != null;
}