abstract class DeviceModel { final String? id; final String? name; final String? type; bool? status; final String? image; final double? timer; bool isSelected = false; DeviceModel({ required this.id, required this.name, required this.type, required this.status, required this.image, required this.timer, }); }