recipe_extractor 2.2.0
recipe_extractor: ^2.2.0 copied to clipboard
Retrieve recipe information from the url of a cooking website
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);
}