mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-27 03:04:54 +00:00
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:
@ -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,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user