copyWithWrapped method

FwStandardModulesAdministratorSystemUpdateAvailableVersionsRequest copyWithWrapped({
  1. Wrapped<String?>? currentVersion,
  2. Wrapped<bool?>? onlyIncludeNewerVersions,
})

Implementation

FwStandardModulesAdministratorSystemUpdateAvailableVersionsRequest
copyWithWrapped({
  Wrapped<String?>? currentVersion,
  Wrapped<bool?>? onlyIncludeNewerVersions,
}) {
  return FwStandardModulesAdministratorSystemUpdateAvailableVersionsRequest(
    currentVersion: (currentVersion != null
        ? currentVersion.value
        : this.currentVersion),
    onlyIncludeNewerVersions: (onlyIncludeNewerVersions != null
        ? onlyIncludeNewerVersions.value
        : this.onlyIncludeNewerVersions),
  );
}