GetDeploymentConfigOutput.fromJson constructor

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

Implementation

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