copyWithWrapped method
Implementation
WebApiModulesAdministratorSystemUpdateApplyUpdateRequest copyWithWrapped(
{Wrapped<String?>? currentVersion, Wrapped<String?>? toVersion}) {
return WebApiModulesAdministratorSystemUpdateApplyUpdateRequest(
currentVersion: (currentVersion != null
? currentVersion.value
: this.currentVersion),
toVersion: (toVersion != null ? toVersion.value : this.toVersion));
}