discord_bot_flutter 1.0.0 copy "discord_bot_flutter: ^1.0.0" to clipboard
discord_bot_flutter: ^1.0.0 copied to clipboard

A dart package to interact with discord bot

example/discord_bot_flutter_example.dart

import 'package:discord_bot_flutter/discord_bot_flutter.dart';

void main() {
  var awesome = DiscordBotFlutter(
    channelID: '<place-your-channel-id>',
    botToken: '<place-your-bot-token>',
  );
  awesome.sendMessageAsText(
    "A user named mustafa jani has joined the channel :xD",
  );
}