summaryrefslogtreecommitdiff
path: root/lib/models/recipe.dart
diff options
context:
space:
mode:
authormavlonerkinboev <mavlonbek.ibragimov007@gmail.com>2021-11-02 18:56:46 +0500
committermavlonerkinboev <mavlonbek.ibragimov007@gmail.com>2021-11-02 18:56:46 +0500
commit72b811235c1b369d85657e41d08cdbce6ad965bf (patch)
tree40586d73bcad76b90633c5d2514cff521daa2a3e /lib/models/recipe.dart
parentea69179415c6b0d01b94a8799bdb5dd4d69d6bd0 (diff)
Added empty spaces
Diffstat (limited to 'lib/models/recipe.dart')
-rwxr-xr-xlib/models/recipe.dart5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/models/recipe.dart b/lib/models/recipe.dart
index 1100862..2ca1bb2 100755
--- a/lib/models/recipe.dart
+++ b/lib/models/recipe.dart
@@ -1,10 +1,15 @@
class Recipe {
final String name;
+
final String image;
+
final String desc;
+
final String description;
+
final String ingredients;
+
final String tutorial;
Recipe({this.name,this.desc,this.description,this.image,this.ingredients,this.tutorial});