editWait abstract method
Future<InteractionContract>
editWait({
- String content,
- List<
MessageEmbed> embeds, - List<
MessageComponent> components, - bool ephemeral = false,
Use to edit the deferred message, delete the deferred message to a simple reply. Usage:
await interaction.editDefer(content: 'Hello Mineral');
Implementation
Future<InteractionContract> editWait(
{String content,
List<MessageEmbed> embeds,
List<MessageComponent> components,
bool ephemeral = false});