PlacedPlayerSession.fromJson constructor
Implementation
factory PlacedPlayerSession.fromJson(Map<String, dynamic> json) {
return PlacedPlayerSession(
playerId: json['PlayerId'] as String?,
playerSessionId: json['PlayerSessionId'] as String?,
);
}