copyWith method
WebApiModulesWarehouseShippingCaseShippingCase
copyWith({
- int? shippingCaseId,
- String? orderId,
- String? orderNumber,
- String? orderDescription,
- String? orderType,
- String? itemId,
- String? inventoryId,
- String? iCode,
- String? itemDescription,
- String? barCode,
- String? description,
- String? shippingCaseNumber,
- double? itemCount,
- String? shippingCaseTitle,
- String? warehouseId,
- String? warehouse,
- String? auditNote,
- String? recordTitle,
- dynamic urlIdentifier,
- List<
Object> ? custom, - List<
Object> ? defaultFieldAttributes, - dynamic original,
- List<
Object> ? translation, - bool? hasImport,
- bool? hasDocuments,
- String? createdByUserId,
- String? createdByUserName,
- String? createdDateTime,
- String? modifiedByUserId,
- String? modifiedByUserName,
- String? modifiedDateTime,
Implementation
WebApiModulesWarehouseShippingCaseShippingCase copyWith({
int? shippingCaseId,
String? orderId,
String? orderNumber,
String? orderDescription,
String? orderType,
String? itemId,
String? inventoryId,
String? iCode,
String? itemDescription,
String? barCode,
String? description,
String? shippingCaseNumber,
double? itemCount,
String? shippingCaseTitle,
String? warehouseId,
String? warehouse,
String? auditNote,
String? recordTitle,
dynamic urlIdentifier,
List<Object>? custom,
List<Object>? defaultFieldAttributes,
dynamic original,
List<Object>? translation,
bool? hasImport,
bool? hasDocuments,
String? createdByUserId,
String? createdByUserName,
String? createdDateTime,
String? modifiedByUserId,
String? modifiedByUserName,
String? modifiedDateTime,
}) {
return WebApiModulesWarehouseShippingCaseShippingCase(
shippingCaseId: shippingCaseId ?? this.shippingCaseId,
orderId: orderId ?? this.orderId,
orderNumber: orderNumber ?? this.orderNumber,
orderDescription: orderDescription ?? this.orderDescription,
orderType: orderType ?? this.orderType,
itemId: itemId ?? this.itemId,
inventoryId: inventoryId ?? this.inventoryId,
iCode: iCode ?? this.iCode,
itemDescription: itemDescription ?? this.itemDescription,
barCode: barCode ?? this.barCode,
description: description ?? this.description,
shippingCaseNumber: shippingCaseNumber ?? this.shippingCaseNumber,
itemCount: itemCount ?? this.itemCount,
shippingCaseTitle: shippingCaseTitle ?? this.shippingCaseTitle,
warehouseId: warehouseId ?? this.warehouseId,
warehouse: warehouse ?? this.warehouse,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
urlIdentifier: urlIdentifier ?? this.urlIdentifier,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
original: original ?? this.original,
translation: translation ?? this.translation,
hasImport: hasImport ?? this.hasImport,
hasDocuments: hasDocuments ?? this.hasDocuments,
createdByUserId: createdByUserId ?? this.createdByUserId,
createdByUserName: createdByUserName ?? this.createdByUserName,
createdDateTime: createdDateTime ?? this.createdDateTime,
modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
);
}