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