copyWithWrapped method
Implementation
WebApiModulesAdministratorSystemUpdateAvailableVersion copyWithWrapped(
{Wrapped<String?>? value,
Wrapped<String?>? text,
Wrapped<String?>? version,
Wrapped<DateTime?>? versionDate}) {
return WebApiModulesAdministratorSystemUpdateAvailableVersion(
value: (value != null ? value.value : this.value),
text: (text != null ? text.value : this.text),
version: (version != null ? version.value : this.version),
versionDate:
(versionDate != null ? versionDate.value : this.versionDate));
}