All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.multiplatform.webview.request.WebRequest.kt Maven / Gradle / Ivy

There is a newer version: 1.9.40-alpha04
Show newest version
package com.multiplatform.webview.request

/**
 * Created By Kevin Zou On 2023/11/29
 */
data class WebRequest(
    val url: String,
    val headers: MutableMap = mutableMapOf(),
    val isForMainFrame: Boolean = false,
    val isRedirect: Boolean = false,
    val method: String = "GET",
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy