copyWithWrapped method
Implementation
WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenRequestUser copyWithWrapped({
Wrapped<String?>? username,
Wrapped<String?>? password,
Wrapped<WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenRequestUserErp?>?
erpIntegration,
}) {
return WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenRequestUser(
username: (username != null ? username.value : this.username),
password: (password != null ? password.value : this.password),
erpIntegration: (erpIntegration != null
? erpIntegration.value
: this.erpIntegration),
);
}