Grocery constructor

Grocery({
  1. String? activeIngredients,
  2. double? alcoholByVolume,
  3. String? allergens,
  4. List<String>? derivedNutritionClaim,
  5. String? directions,
  6. String? indications,
  7. String? ingredients,
  8. List<String>? nutritionClaim,
  9. String? storageInstructions,
})

Implementation

Grocery({
  this.activeIngredients,
  this.alcoholByVolume,
  this.allergens,
  this.derivedNutritionClaim,
  this.directions,
  this.indications,
  this.ingredients,
  this.nutritionClaim,
  this.storageInstructions,
});