copyWith method
WebApiModulesAgentScheduleBarCodeReservationEvent
copyWith({
- String? inventoryId,
- String? warehouseId,
- String? start,
- String? end,
- String? estimatedStopDate,
- bool? late,
- bool? lateButReturning,
- String? startdisplay,
- String? enddisplay,
- String? text,
- String? backColor,
- String? barColor,
- String? textColor,
- String? id,
- String? resource,
- String? orderId,
- String? orderNumber,
- String? rentalItemId,
- String? orderItemId,
- String? barCode,
- bool? qcRequired,
- String? total,
- String? qtyTotal,
- String? qtyIn,
- String? qtyStaged,
- String? qtyOut,
- String? qtyInRepair,
- String? qtyInTransit,
- String? qtyInContainer,
- String? qtyOnTruck,
- String? qtyOnPo,
- String? qtyQcRequired,
- String? qtyLate,
- String? qtyLateButReturning,
- String? rowType,
- String? consignor,
- String? consignorId,
- String? consignorAgreementNumber,
- String? consignorAgreementId,
Implementation
WebApiModulesAgentScheduleBarCodeReservationEvent copyWith(
{String? inventoryId,
String? warehouseId,
String? start,
String? end,
String? estimatedStopDate,
bool? late,
bool? lateButReturning,
String? startdisplay,
String? enddisplay,
String? text,
String? backColor,
String? barColor,
String? textColor,
String? id,
String? resource,
String? orderId,
String? orderNumber,
String? rentalItemId,
String? orderItemId,
String? barCode,
bool? qcRequired,
String? total,
String? qtyTotal,
String? qtyIn,
String? qtyStaged,
String? qtyOut,
String? qtyInRepair,
String? qtyInTransit,
String? qtyInContainer,
String? qtyOnTruck,
String? qtyOnPo,
String? qtyQcRequired,
String? qtyLate,
String? qtyLateButReturning,
String? rowType,
String? consignor,
String? consignorId,
String? consignorAgreementNumber,
String? consignorAgreementId}) {
return WebApiModulesAgentScheduleBarCodeReservationEvent(
inventoryId: inventoryId ?? this.inventoryId,
warehouseId: warehouseId ?? this.warehouseId,
start: start ?? this.start,
end: end ?? this.end,
estimatedStopDate: estimatedStopDate ?? this.estimatedStopDate,
late: late ?? this.late,
lateButReturning: lateButReturning ?? this.lateButReturning,
startdisplay: startdisplay ?? this.startdisplay,
enddisplay: enddisplay ?? this.enddisplay,
text: text ?? this.text,
backColor: backColor ?? this.backColor,
barColor: barColor ?? this.barColor,
textColor: textColor ?? this.textColor,
id: id ?? this.id,
resource: resource ?? this.resource,
orderId: orderId ?? this.orderId,
orderNumber: orderNumber ?? this.orderNumber,
rentalItemId: rentalItemId ?? this.rentalItemId,
orderItemId: orderItemId ?? this.orderItemId,
barCode: barCode ?? this.barCode,
qcRequired: qcRequired ?? this.qcRequired,
total: total ?? this.total,
qtyTotal: qtyTotal ?? this.qtyTotal,
qtyIn: qtyIn ?? this.qtyIn,
qtyStaged: qtyStaged ?? this.qtyStaged,
qtyOut: qtyOut ?? this.qtyOut,
qtyInRepair: qtyInRepair ?? this.qtyInRepair,
qtyInTransit: qtyInTransit ?? this.qtyInTransit,
qtyInContainer: qtyInContainer ?? this.qtyInContainer,
qtyOnTruck: qtyOnTruck ?? this.qtyOnTruck,
qtyOnPo: qtyOnPo ?? this.qtyOnPo,
qtyQcRequired: qtyQcRequired ?? this.qtyQcRequired,
qtyLate: qtyLate ?? this.qtyLate,
qtyLateButReturning: qtyLateButReturning ?? this.qtyLateButReturning,
rowType: rowType ?? this.rowType,
consignor: consignor ?? this.consignor,
consignorId: consignorId ?? this.consignorId,
consignorAgreementNumber:
consignorAgreementNumber ?? this.consignorAgreementNumber,
consignorAgreementId:
consignorAgreementId ?? this.consignorAgreementId);
}