editFollowup abstract method

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

Use to edit the follow up message. Usage:

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

Implementation

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