create method

  1. @override
Future<void> create(
  1. String playerId
)

Create a player instance for the given playerId.

Implementation

@override
Future<void> create(String playerId) async {
  players[playerId] = WrappedPlayer(playerId);
}