teamspeak3 2.0.1 copy "teamspeak3: ^2.0.1" to clipboard
teamspeak3: ^2.0.1 copied to clipboard

outdated

Create teamspeak3 bots in dart.

example/example.dart

import 'dart:async';
import 'dart:io';
import 'package:teamspeak3/teamspeak3.dart';

Future<void> main() async {
  var ts =
      TeamSpeak3(InternetAddress.loopbackIPv4, 10011, 'serveradmin', 'mypass');

  await ts.bot.setNickname('DartBot');
}