editResponse method

Future editResponse({
  1. required InteractionApplicationCommandCallbackData data,
})

Implementation

Future editResponse({
  required InteractionApplicationCommandCallbackData data,
}) {
  var client = clients[_clientIndex]!;
  return client.interactions.editResponse(
    id,
    token: token,
    data: data,
  );
}