LineItemDetails constructor

LineItemDetails({
  1. String? brand,
  2. List<String>? gtins,
  3. String? lineItemId,
  4. String? mpn,
  5. String? productId,
  6. String? productTitle,
  7. String? quantity,
})

Implementation

LineItemDetails({
  this.brand,
  this.gtins,
  this.lineItemId,
  this.mpn,
  this.productId,
  this.productTitle,
  this.quantity,
});