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