CancelChangeSetResponse.fromJson constructor
Implementation
factory CancelChangeSetResponse.fromJson(Map<String, dynamic> json) {
return CancelChangeSetResponse(
changeSetArn: json['ChangeSetArn'] as String?,
changeSetId: json['ChangeSetId'] as String?,
);
}