The easiest way to use BotiCord API in Dart
Examples:
Post Bot's Stats:
import 'package:boticord/boticord.dart';
import 'package:boticord/src/models/botstats.dart';
void main() async {
final client = BotiCord(
token: '',
);
final BotStats stats = BotStats(
servers: 150,
users: null,
shards: 1
);
await client.postBotStats(stats);
}
If you have any questions you can ask Marakarka#0575 on discord.