reply<T extends Message> method
Future<T>
reply<T extends Message>({
- String? content,
- List<
MessageEmbed> ? embeds, - 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);
}