added models
This commit is contained in:
11
lib/models/ingredient.dart
Normal file
11
lib/models/ingredient.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class Ingredient {
|
||||
final String title;
|
||||
List<String> possibleUnits = [];
|
||||
List<String> preferredBrands = [];
|
||||
|
||||
Ingredient({
|
||||
required this.title,
|
||||
required this.possibleUnits,
|
||||
required this.preferredBrands,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user