ProductData constructor

ProductData({
  1. double? itemRevenue,
  2. String? productName,
  3. String? productQuantity,
  4. String? productSku,
})

Implementation

ProductData({
  this.itemRevenue,
  this.productName,
  this.productQuantity,
  this.productSku,
});