reactWithHeart method

Future<bool> reactWithHeart({
  1. bool? isBig,
})

Adds a heart reaction to the current message.

Example:

await ctx.reactWithHeart();

Implementation

Future<bool> reactWithHeart({bool? isBig}) {
  return react('❤️', isBig: isBig);
}