react method
Future<DynamiteResponse<ReactionReactResponseApplicationJson, void> >
react({
- required String reaction,
- required String token,
- required int messageId,
- ReactionReactApiVersion? apiVersion,
- bool? oCSAPIRequest,
Add a reaction to a message.
Returns a Future containing a DynamiteResponse
with the status code, deserialized body and headers.
Throws a DynamiteApiException
if the API call does not return an expected status code.
Parameters:
reaction
Emoji to add.apiVersion
Defaults tov1
.token
messageId
ID of the message.oCSAPIRequest
Required to be true for the API request to pass. Defaults totrue
.
Status codes:
- 200: Reaction already existed
- 201: Reaction added successfully
- 400: Adding reaction is not possible
- 404: Message not found
See:
- reactRaw for an experimental operation that returns a
DynamiteRawResponse
that can be serialized.
Implementation
Future<_i1.DynamiteResponse<ReactionReactResponseApplicationJson, void>> react({
required String reaction,
required String token,
required int messageId,
ReactionReactApiVersion? apiVersion,
bool? oCSAPIRequest,
}) async {
final rawResponse = reactRaw(
reaction: reaction,
token: token,
messageId: messageId,
apiVersion: apiVersion,
oCSAPIRequest: oCSAPIRequest,
);
return rawResponse.future;
}