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