TransferStockBody constructor

TransferStockBody({
  1. String? id,
  2. int? quantity,
  3. String? note,
})

Implementation

TransferStockBody({
  this.id,
  this.quantity,
  this.note,
});