CreateDeploymentResponse.fromJson constructor
Implementation
factory CreateDeploymentResponse.fromJson(Map<String, dynamic> json) {
return CreateDeploymentResponse(
deploymentId: json['deploymentId'] as String?,
iotJobArn: json['iotJobArn'] as String?,
iotJobId: json['iotJobId'] as String?,
);
}