removeGroupPlayer method

Future<void> removeGroupPlayer(
  1. String playerId
)

Remove a group player.

Implementation

Future<void> removeGroupPlayer(String playerId) async {
  await _client.sendCommand('players/remove_group_player', args: {'player_id': playerId});
}