add device filter and select time repeat widget

This commit is contained in:
mohammad
2024-08-20 16:36:05 +03:00
parent 0cf5053f8b
commit 1204563c55
13 changed files with 346 additions and 124 deletions

View File

@ -1,5 +1,7 @@
import 'package:syncrow_web/utils/constants/const.dart';
class DeviceModel {
dynamic productUuid;
dynamic productType;
@ -15,7 +17,7 @@ class DeviceModel {
dynamic lon;
dynamic model;
dynamic name;
dynamic online;
DeviseStatus online;
dynamic ownerId;
dynamic sub;
dynamic timeZone;
@ -62,7 +64,7 @@ class DeviceModel {
lon: json['lon'] ,
model: json['model'] ,
name: json['name'],
online: json['online'],
online: OnlineTypeExtension.fromString(json['online']),
ownerId: json['ownerId'] ,
sub: json['sub'],
timeZone: json['timeZone'],