Recipe constructor

Recipe({
  1. required String name,
  2. required String ingredients,
  3. required String directions,
})

Implementation

Recipe({
  required this.name,
  required this.ingredients,
  required this.directions,
});