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