reply abstract method

Future<InteractionContract> reply({
  1. String content,
  2. List<MessageEmbed> embeds,
  3. List<MessageComponent> components,
  4. bool ephemeral = false,
})

Use to reply to the interaction. Usage:

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

Implementation

Future<InteractionContract> reply(
    {String content,
    List<MessageEmbed> embeds,
    List<MessageComponent> components,
    bool ephemeral = false});