getNetwork
inline suspend fun WickrClient.getNetwork(crossinline block: GetNetworkRequest.Builder.() -> Unit): GetNetworkResponse
Retrieves detailed information about a specific Wickr network, including its configuration, access level, and status.
Samples
fun main() {
//sampleStart
// Get network successfully
val resp = wickrClient.getNetwork {
networkId = "12345678"
}
//sampleEnd
}