import '../src/enums.dart' show IngredientType; import 'unit.dart'; class Ingredient { final String title; final List possibleUnits; final List preferredBrands; final IngredientType type; Ingredient({ required this.title, required this.type, this.possibleUnits = const [], this.preferredBrands = const [], }); }