reply method

Future<void> reply({
  1. String? content,
  2. List<MessageEmbed>? embeds,
  3. 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);
}