factory Item.fromMap(Map<String, dynamic> map) { return Item( description: map['description'] as String, quantity: map['quantity'] as int, price: map['price'] as int, ); }