editFollowUp abstract method
Future<InteractionContract>
editFollowUp({
- String content,
- List<
MessageEmbed> embeds, - List<
MessageComponent> components, - bool ephemeral = false,
Use to edit the follow up message. Usage:
final interaction = await interaction.editFollowUp(content: 'New Hello Mineral');
Implementation
Future<InteractionContract> editFollowUp(
{String content,
List<MessageEmbed> embeds,
List<MessageComponent> components,
bool ephemeral = false});