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