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