CommerceProduct constructor

CommerceProduct({
  1. String productId = '',
  2. int duration = -1,
  3. int quantity = 1,
})

Implementation

CommerceProduct({
  this.productId = '',
  this.duration = -1,
  this.quantity = 1,
});