DeleteImageRecipeResponse.fromJson constructor
Implementation
factory DeleteImageRecipeResponse.fromJson(Map<String, dynamic> json) {
return DeleteImageRecipeResponse(
imageRecipeArn: json['imageRecipeArn'] as String?,
requestId: json['requestId'] as String?,
);
}