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