InStockBody constructor

InStockBody({
  1. String? sku,
  2. String? productId,
  3. int? quantity,
  4. String? type,
  5. String? status,
  6. bool? include,
  7. String? note,
  8. String? startDate,
  9. String? endDate,
  10. String? purchaseDate,
  11. double? purchasePrice,
  12. String? purchaseCurrency,
  13. String? warehouseId,
  14. String? supplierId,
  15. String? storeId,
})

Implementation

InStockBody({
  this.sku,
  this.productId,
  this.quantity,
  this.type,
  this.status,
  this.include,
  this.note,
  this.startDate,
  this.endDate,
  this.purchaseDate,
  this.purchasePrice,
  this.purchaseCurrency,
  this.warehouseId,
  this.supplierId,
  this.storeId,
});