getRecipe abstract method

Future<SDKIPCResponse<Recipe>> getRecipe(
  1. String cookbookId,
  2. String recipeId
)

This method gets the recipe based on the cookbookId and the recipeId Input : cookbookId the id of the cookbook which contains the recipe, recipeId the id of the recipe Output: Recipe the recipe that we need.

Implementation

Future<SDKIPCResponse<Recipe>> getRecipe(String cookbookId, String recipeId);