class Recipe { final String label; final List ingredientLines; final String imageUrl; Recipe({ required this.label, required this.ingredientLines, required this.imageUrl, }); Map toMap() { return { 'label': label, 'ingredientLines': ingredientLines, 'imageUrl': imageUrl, }; } }