Item constructor
Item({})
Creates a new Item object with the given name, quantity, price, and category.
Implementation
Item({
required this.name,
required this.quantity,
required this.price,
required this.category,
});