followup abstract method

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

Use to follow up the interaction. Usage:

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

Implementation

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