StockProductModel constructor

StockProductModel({
  1. int? id,
  2. int? ordered,
  3. int? scanned,
  4. String? stockRequestId,
  5. String? stockRequestName,
  6. String? status,
  7. String? externalReferenceId,
  8. String? requestedByPartnerId,
  9. String? requestedToPartnerId,
  10. String? productName,
  11. String? productDescription,
})

Implementation

StockProductModel({
  this.id,
  this.ordered,
  this.scanned,
  this.stockRequestId,
  this.stockRequestName,
  this.status,
  this.externalReferenceId,
  this.requestedByPartnerId,
  this.requestedToPartnerId,
  this.productName,
  this.productDescription,
});