Player constructor

Player({
  1. Map<String, int>? latencyInMs,
  2. Map<String, AttributeValue>? playerAttributes,
  3. String? playerId,
  4. String? team,
})

Implementation

Player({
  this.latencyInMs,
  this.playerAttributes,
  this.playerId,
  this.team,
});