deleteReaction method

Future<EmptyResponse> deleteReaction(
  1. String messageId,
  2. String reactionType
)

Delete a reactionType from this messageId

Implementation

Future<EmptyResponse> deleteReaction(
  String messageId,
  String reactionType,
) =>
    _chatApi.message.deleteReaction(
      messageId,
      reactionType,
    );