Simple recipe provider changes

This commit is contained in:
SomnusVeritas
2023-10-17 18:23:05 +02:00
parent 11266b9ab4
commit 31a5933919
2 changed files with 30 additions and 11 deletions

View File

@@ -5,7 +5,7 @@ import 'steps.dart';
class Recipe {
final String title;
final String description;
final DifficultyUtil? difficulty;
final Difficulty? difficulty;
final List<Ingredient> ingredients = [];
final Steps steps = Steps();