copyWith method

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

Implementation

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