AiutaProduct constructor

AiutaProduct({
  1. required String skuId,
  2. String? catalogName,
  3. required String title,
  4. required List<String> imageUrls,
  5. String? localizedPrice,
  6. String? localizedOldPrice,
  7. required String brand,
  8. String? additionalShareInfo,
  9. required bool inWishlist,
})

Creates a new instance of AiutaProduct to pass the information about a SKU in the Aiuta platform.

Implementation

AiutaProduct({
  required this.skuId,
  this.catalogName,
  required this.title,
  required this.imageUrls,
  this.localizedPrice,
  this.localizedOldPrice,
  required this.brand,
  this.additionalShareInfo,
  required this.inWishlist,
});