DeleteGameServerGroupOutput.fromJson constructor

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

Implementation

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