copyWithWrapped method

WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponseErpIntegration copyWithWrapped({
  1. Wrapped<String?>? integAccessEndpoint,
  2. Wrapped<String?>? integAccessToken,
  3. Wrapped<String?>? integSourceId,
})

Implementation

WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponseErpIntegration
copyWithWrapped({
  Wrapped<String?>? integAccessEndpoint,
  Wrapped<String?>? integAccessToken,
  Wrapped<String?>? integSourceId,
}) {
  return WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponseErpIntegration(
    integAccessEndpoint: (integAccessEndpoint != null
        ? integAccessEndpoint.value
        : this.integAccessEndpoint),
    integAccessToken: (integAccessToken != null
        ? integAccessToken.value
        : this.integAccessToken),
    integSourceId: (integSourceId != null
        ? integSourceId.value
        : this.integSourceId),
  );
}