reply<T extends Message> method

  1. @override
Future<T> reply<T extends Message>({
  1. String? content,
  2. List<MessageEmbed>? embeds,
  3. List<MessageComponent>? components,
})
override

Reply to the original message.

await message.reply(content: 'Replying to the message');

Implementation

@override
Future<T> reply<T extends Message>(
    {String? content, List<MessageEmbed>? embeds, List<MessageComponent>? components}) async {
  return _datastore.message.reply(
      id: id, channelId: channelId, content: content, embeds: embeds, components: components);
}