group method

Future<void> group(
  1. String playerId,
  2. String targetPlayer
)

Handle GROUP command for given player.

Implementation

Future<void> group(String playerId, String targetPlayer) async {
  await _client.sendCommand('players/cmd/group', args: {'player_id': playerId, 'target_player': targetPlayer});
}