editReply abstract method
Future<InteractionContract>
editReply({
- String content,
- List<
MessageEmbed> embeds, - 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});