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