copyWithWrapped method

WebApiModulesAdministratorSystemUpdateAvailableVersion copyWithWrapped({
  1. Wrapped<String?>? value,
  2. Wrapped<String?>? text,
  3. Wrapped<String?>? version,
  4. Wrapped<DateTime?>? versionDate,
})

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));
}