selectPlayer method

void selectPlayer(
  1. String s
)

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