commonMain.com.multiplatform.webview.request.WebRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compose-webview-multiplatform Show documentation
Show all versions of compose-webview-multiplatform Show documentation
WebView for JetBrains Compose Multiplatform
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",
)