private to follow the encapsulation principle.
Example:
class Service(val url: String) {
fun connect(): URLConnection = URL(url).openConnection()
}
After the quick-fix is applied (considering there are no usages of url outside of Service class):
class Service(private val url: String) {
fun connect(): URLConnection = URL(url).openConnection()
}