PlayerSession constructor

PlayerSession({
  1. DateTime? creationTime,
  2. String? dnsName,
  3. String? fleetArn,
  4. String? fleetId,
  5. String? gameSessionId,
  6. String? ipAddress,
  7. String? playerData,
  8. String? playerId,
  9. String? playerSessionId,
  10. int? port,
  11. PlayerSessionStatus? status,
  12. DateTime? terminationTime,
})

Implementation

PlayerSession({
  this.creationTime,
  this.dnsName,
  this.fleetArn,
  this.fleetId,
  this.gameSessionId,
  this.ipAddress,
  this.playerData,
  this.playerId,
  this.playerSessionId,
  this.port,
  this.status,
  this.terminationTime,
});