diff options
author | mavlonerkinboev <mavlonbek.ibragimov007@gmail.com> | 2021-11-02 18:56:46 +0500 |
---|---|---|
committer | mavlonerkinboev <mavlonbek.ibragimov007@gmail.com> | 2021-11-02 18:56:46 +0500 |
commit | 72b811235c1b369d85657e41d08cdbce6ad965bf (patch) | |
tree | 40586d73bcad76b90633c5d2514cff521daa2a3e /lib | |
parent | ea69179415c6b0d01b94a8799bdb5dd4d69d6bd0 (diff) |
Added empty spaces
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/models/recipe.dart | 5 |
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}); |