ProductDetailStockBody constructor

ProductDetailStockBody({
  1. String? storeId,
  2. String? sku,
  3. int? quantity,
  4. String? note,
  5. String? startDate,
  6. String? endDate,
  7. String? purchaseDate,
  8. double? purchasePrice,
  9. String? purchaseCurrency,
  10. String? supplierId,
})

Implementation

ProductDetailStockBody({
  this.storeId,
  this.sku,
  this.quantity,
  this.note,
  this.startDate,
  this.endDate,
  this.purchaseDate,
  this.purchasePrice,
  this.purchaseCurrency,
  this.supplierId,
});