Content constructor

Content({
  1. int? id,
  2. String? transferOrderId,
  3. int? stockRequestId,
  4. int? allocatedQuantity,
  5. int? grQuantity,
  6. dynamic fileId,
  7. String? status,
  8. List<ProductDetail>? productDetails,
  9. String? stockRequestTranscationId,
  10. dynamic stockRequestName,
  11. dynamic transferStatus,
  12. String? operationId,
  13. String? externalReferenceId,
  14. dynamic saleOrderId,
  15. dynamic documentId,
  16. String? stockRequestType,
  17. String? createdAt,
  18. bool? isUploadButtonRequired,
  19. String? userId,
  20. String? checkinId,
})

Implementation

Content({
  this.id,
  this.transferOrderId,
  this.stockRequestId,
  this.allocatedQuantity,
  this.grQuantity,
  this.fileId,
  this.status,
  this.productDetails,
  this.stockRequestTranscationId,
  this.stockRequestName,
  this.transferStatus,
  this.operationId,
  this.externalReferenceId,
  this.saleOrderId,
  this.documentId,
  this.stockRequestType,
  this.createdAt,
  this.isUploadButtonRequired,
  this.userId,
  this.checkinId,
});