class DeviceModel { final String name; final String imageUrl; final String description; final String category; final String id; DeviceModel( {required this.name, required this.imageUrl, required this.description, required this.category, required this.id}); }