push design and missing view and folder structure

This commit is contained in:
ashrafzarkanisala
2024-11-25 10:08:50 +03:00
parent 30db9cfc2a
commit 19694bec98
23 changed files with 310 additions and 116 deletions

View File

@ -93,7 +93,7 @@ class SceneApi {
expectedResponseModel: (json) {
List<ScenesModel> scenes = [];
for (var scene in json) {
scenes.add(ScenesModel.fromJson(scene));
scenes.add(ScenesModel.fromJson(scene, isAutomation: true));
}
return scenes;
},