Product constructor
Product({})
Implementation
Product({
required this.productId,
required this.type,
required this.amountLabel,
this.price,
required this.currency,
required this.imageUrl,
required this.title,
this.description,
});