copyWith method
Implementation
WebApiModulesAdministratorSystemUpdateBuildDocumentsRequest copyWith(
{String? currentVersion, bool? onlyIncludeNewerVersions}) {
return WebApiModulesAdministratorSystemUpdateBuildDocumentsRequest(
currentVersion: currentVersion ?? this.currentVersion,
onlyIncludeNewerVersions:
onlyIncludeNewerVersions ?? this.onlyIncludeNewerVersions);
}