reply method
Future<void>
reply({
- String? content,
- List<
MessageEmbed> ? embeds, - List<
MessageComponent> ? components,
Implementation
Future<void> reply(
{String? content,
List<MessageEmbed>? embeds,
List<MessageComponent>? components}) async {
_dataStoreServerMessage.reply(
id: id,
channelId: channelId,
serverId: channel.serverId,
content: content,
embeds: embeds,
components: components);
}