ProxySettings

data class ProxySettings(    val host: String = "localhost",     val port: Int = 1080,     val username: String? = null,     val password: String? = null)

Constructors

Link copied to clipboard
fun ProxySettings(    host: String = "localhost",     port: Int = 1080,     username: String? = null,     password: String? = null)

Properties

Link copied to clipboard
val host: String
Link copied to clipboard
val password: String? = null
Link copied to clipboard
val port: Int = 1080
Link copied to clipboard
val username: String? = null