copyWithWrapped method

WebApiModulesPluginsTeamupTeamupRequest copyWithWrapped({
  1. Wrapped<String?>? goToUrl,
  2. Wrapped<String?>? orderId,
})

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),
  );
}