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