remove method

Future<void> remove(
  1. String playerId
)

Remove a player from a provider.

Implementation

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