StopGameSessionPlacementOutput.fromJson constructor

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

Implementation

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