CreateCloudFormationChangeSetResponse.fromJson constructor
Implementation
factory CreateCloudFormationChangeSetResponse.fromJson(
Map<String, dynamic> json) {
return CreateCloudFormationChangeSetResponse(
applicationId: json['applicationId'] as String?,
changeSetId: json['changeSetId'] as String?,
semanticVersion: json['semanticVersion'] as String?,
stackId: json['stackId'] as String?,
);
}