selectPlayer method
Selects a player using the given identifier.
This function asynchronously invokes _controller.selectPlayer
with the provided player identifier s
.
Implementation
void selectPlayer(String s) async {
_controller.selectPlayer(s);
}