editReply abstract method

Future<InteractionContract> editReply({
  1. required MessageBuilder builder,
  2. bool ephemeral = false,
})

Use to edit the reply to the interaction. Usage:

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

Implementation

Future<InteractionContract> editReply(
    {required MessageBuilder builder, bool ephemeral = false});