copyWith method
Implementation
WebApiModulesAgentOrderCopyQuoteOrderRequest copyWith(
{String? copyToType,
String? locationId,
String? warehouseId,
String? newDescription,
bool? copyLineItemNotes,
bool? copyOrderNotes,
bool? combineSubs,
bool? copyDocuments,
bool? copyCarrierShipVia}) {
return WebApiModulesAgentOrderCopyQuoteOrderRequest(
copyToType: copyToType ?? this.copyToType,
locationId: locationId ?? this.locationId,
warehouseId: warehouseId ?? this.warehouseId,
newDescription: newDescription ?? this.newDescription,
copyLineItemNotes: copyLineItemNotes ?? this.copyLineItemNotes,
copyOrderNotes: copyOrderNotes ?? this.copyOrderNotes,
combineSubs: combineSubs ?? this.combineSubs,
copyDocuments: copyDocuments ?? this.copyDocuments,
copyCarrierShipVia: copyCarrierShipVia ?? this.copyCarrierShipVia);
}