copyWithWrapped method

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

Implementation

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