Coffee constructor

const Coffee({
  1. BrewRecipe? recipe,
  2. String? notes,
})

Coffee is created by following a brew recipe.

Implementation

const Coffee({
  this.recipe,
  this.notes,
});