GetContainerRecipeResponse.fromJson constructor
Implementation
factory GetContainerRecipeResponse.fromJson(Map<String, dynamic> json) {
return GetContainerRecipeResponse(
containerRecipe: json['containerRecipe'] != null
? ContainerRecipe.fromJson(
json['containerRecipe'] as Map<String, dynamic>)
: null,
requestId: json['requestId'] as String?,
);
}