VariantCombination constructor

VariantCombination({
  1. int? id,
  2. String? name,
  3. dynamic code,
  4. dynamic currentPrice,
  5. dynamic salesPrice,
  6. bool? onSales,
  7. dynamic supplierPrice,
  8. dynamic markup,
  9. String? sku,
  10. String? barcode,
  11. int? quantity,
  12. bool? trackQuantity,
  13. int? reorderPoint,
  14. bool? active,
  15. bool? isSubscription,
  16. dynamic maxBillingCount,
  17. dynamic billingCycle,
  18. bool? isDefault,
})

Implementation

VariantCombination({
    this.id,
    this.name,
    this.code,
    this.currentPrice,
    this.salesPrice,
    this.onSales,
    this.supplierPrice,
    this.markup,
    this.sku,
    this.barcode,
    this.quantity,
    this.trackQuantity,
    this.reorderPoint,
    this.active,
    this.isSubscription,
    this.maxBillingCount,
    this.billingCycle,
    this.isDefault,
});