TransferBody constructor

TransferBody({
  1. String? note,
  2. String? startWarehouseId,
  3. String? destinationWarehouseId,
  4. String? vehicleId,
  5. String? storeId,
  6. List<TransferStockBody>? stocks,
})

Implementation

TransferBody({
  this.note,
  this.startWarehouseId,
  this.destinationWarehouseId,
  this.vehicleId,
  this.storeId,
  this.stocks,
});