CreateGameSessionQueueOutput.fromJson constructor

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

Implementation

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