recipe_extractor 2.1.1 recipe_extractor: ^2.1.1 copied to clipboard
Retrieve recipe name, ingredients and instructions from a recipe URL.
example/recipe_extractor_example.dart
import 'package:recipe_extractor/recipe_extractor.dart';
void main() async {
const String recipeUrl =
"https://www.allrecipes.com/recipe/218792/ggs-chocolate-sheet-cake";
RecipeData recipeData = await extractRecipe(recipeUrl);
print(recipeData.name);
print(recipeData.ingredients);
print(recipeData.instructions);
}