copyWith method
Implementation
WebApiModulesAgentOrderItemAddAListOfItemsRequest copyWith({
String? orderId,
String? itemList,
String? itemType,
String? recType,
}) {
return WebApiModulesAgentOrderItemAddAListOfItemsRequest(
orderId: orderId ?? this.orderId,
itemList: itemList ?? this.itemList,
itemType: itemType ?? this.itemType,
recType: recType ?? this.recType,
);
}