send method

Future<void> send({
  1. Snowflake? guildId,
  2. String? content,
  3. List<MessageEmbed>? embeds,
  4. Poll? poll,
  5. List<MessageComponent>? components,
})

Implementation

Future<void> send(
    {Snowflake? guildId,
    String? content,
    List<MessageEmbed>? embeds,
    Poll? poll,
    List<MessageComponent>? components}) async {
  await dataStoreChannel.createMessage(
      guildId, id, content, embeds, poll, components);
}