class Item { String name; String description; String? imagePath; Item({ required this.name, required this.description, this.imagePath, }); }