editReply abstract method

Future<InteractionContract> editReply({
  1. String content,
  2. List<MessageEmbed> embeds,
  3. List<MessageComponent> components,
})

Use to edit the reply to the interaction. Usage:

final interaction = await interaction.editReply(content: 'New Hello Mineral');

Implementation

Future<InteractionContract> editReply(
    {String content,
    List<MessageEmbed> embeds,
    List<MessageComponent> components});