Removed location from models

Added the spaces models
Added the rooms models
Added the Spaces cubit
Implemented the home dropdown functionality
This commit is contained in:
Mohammad Salameh
2024-03-06 21:34:23 +03:00
parent b99247c937
commit b3fcca639a
23 changed files with 359 additions and 138 deletions

View File

@ -3,7 +3,6 @@ abstract class DeviceModel {
final String? name;
final String? type;
bool? status;
final String? location;
final String? image;
final double? timer;
bool isSelected = false;
@ -13,7 +12,6 @@ abstract class DeviceModel {
required this.name,
required this.type,
required this.status,
required this.location,
required this.image,
required this.timer,
});