StockDTO constructor
StockDTO({
- String? id,
- String? createdAt,
- String? updatedAt,
- bool? isActive,
- bool? isDeleted,
- String? stockType,
- String? type,
- String? status,
- bool? include,
- String? note,
- String? sku,
- int? quantity,
- String? startDate,
- String? endDate,
- String? purchaseDate,
- int? purchasePrice,
- String? purchaseCurrency,
- String? transactionDate,
- String? storeId,
- String? productId,
- String? warehouseId,
- String? transferId,
- String? supplierId,
- String? inStockId,
- String? productName,
- String? productBarcode,
- String? productSlug,
- String? warehouseName,
- String? supplierName,
- ProductDTO? product,
- SupplierDTO? supplier,
- WarehouseDTO? warehouse,
Implementation
StockDTO(
{super.id,
super.createdAt,
super.updatedAt,
super.isActive,
super.isDeleted,
this.stockType,
this.type,
this.status,
this.include,
this.note,
this.sku,
this.quantity,
this.startDate,
this.endDate,
this.purchaseDate,
this.purchasePrice,
this.purchaseCurrency,
this.transactionDate,
this.storeId,
this.productId,
this.warehouseId,
this.transferId,
this.supplierId,
this.inStockId,
this.productName,
this.productBarcode,
this.productSlug,
this.warehouseName,
this.supplierName,
this.product,
this.supplier,
this.warehouse});