StartGameSessionPlacementOutput.fromJson constructor

StartGameSessionPlacementOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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