others property
List<PlayerController>
get
others
others is a list of other players
Implementation
List<PlayerController> get others =>
players.where((player) => player != this).toList();
others is a list of other players
List<PlayerController> get others =>
players.where((player) => player != this).toList();