reply abstract method

Future<InteractionContract> reply({
  1. required MessageBuilder builder,
  2. bool ephemeral = false,
})

Use to reply to the interaction. Usage:

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

Implementation

Future<InteractionContract> reply(
    {required MessageBuilder builder, bool ephemeral = false});