boticord 0.1.0 copy "boticord: ^0.1.0" to clipboard
boticord: ^0.1.0 copied to clipboard

Dart wrapper for the BotiCord API.

botidart

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.

1
likes
110
pub points
0%
popularity

Publisher

verified publisherboticord.top

Dart wrapper for the BotiCord API.

Homepage

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on boticord