react method

Future<void> react(
  1. String messageId,
  2. String reaction
)

Add a reaction to a message (if supported).

Implementation

Future<void> react(String messageId, String reaction) {
  throw UnsupportedError('Reactions not supported by this channel');
}