likeChannelMessage method

void likeChannelMessage(
  1. String channelId,
  2. String messageId,
  3. String reaction,
  4. String action,
)

Implementation

void likeChannelMessage(
    String channelId, String messageId, String reaction, String action) {
  postMessage("likeChannelMessage", {
    "channelId": channelId,
    "messageId": messageId,
    "reaction": reaction,
    "action": action
  });
}