copyWith method

WebApiModulesAdministratorSystemUpdateBuildDocumentsRequest copyWith({
  1. String? currentVersion,
  2. bool? onlyIncludeNewerVersions,
})

Implementation

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