StartGameSessionPlacementOutput.fromJson constructor
Implementation
factory StartGameSessionPlacementOutput.fromJson(Map<String, dynamic> json) {
return StartGameSessionPlacementOutput(
gameSessionPlacement: json['GameSessionPlacement'] != null
? GameSessionPlacement.fromJson(
json['GameSessionPlacement'] as Map<String, dynamic>)
: null,
);
}