copyWithWrapped method
Implementation
WebApiModulesAgentOrderChangeOrderStatusRequest copyWithWrapped({
Wrapped<String?>? orderId,
Wrapped<String?>? newStatus,
}) {
return WebApiModulesAgentOrderChangeOrderStatusRequest(
orderId: (orderId != null ? orderId.value : this.orderId),
newStatus: (newStatus != null ? newStatus.value : this.newStatus),
);
}