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

outdated

Support for TeamSpeak3 Query Protocol

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');
}