BatchGetDeploymentGroupsOutput.fromJson constructor
Implementation
factory BatchGetDeploymentGroupsOutput.fromJson(Map<String, dynamic> json) {
return BatchGetDeploymentGroupsOutput(
deploymentGroupsInfo: (json['deploymentGroupsInfo'] as List?)
?.whereNotNull()
.map((e) => DeploymentGroupInfo.fromJson(e as Map<String, dynamic>))
.toList(),
errorMessage: json['errorMessage'] as String?,
);
}