copyWithWrapped method

Implementation

WebApiModulesPluginsBoxedUpStatusResponseWebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponse
    copyWithWrapped(
        {Wrapped<bool?>? success,
        Wrapped<String?>? statusText,
        Wrapped<WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponse?>?
            tokenResponse}) {
  return WebApiModulesPluginsBoxedUpStatusResponseWebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponse(
      success: (success != null ? success.value : this.success),
      statusText: (statusText != null ? statusText.value : this.statusText),
      tokenResponse:
          (tokenResponse != null ? tokenResponse.value : this.tokenResponse));
}