OutStockBody constructor

OutStockBody({
  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? transactionDate,
  11. String? inStockId,
  12. String? warehouseId,
  13. String? supplierId,
  14. String? storeId,
})

Implementation

OutStockBody({
  this.sku,
  this.productId,
  this.quantity,
  this.type,
  this.status,
  this.include,
  this.note,
  this.startDate,
  this.endDate,
  this.transactionDate,
  this.inStockId,
  this.warehouseId,
  this.supplierId,
  this.storeId,
});