connect

suspend fun connect(reconnectDetails: <Error class: unknown class>? = null, options: List<<Error class: unknown class>>? = null)

Deprecated

Use connectInternal() which returns SfuConnectionResult instead of throwing.

Replace with

connectInternal(reconnectDetails, options)

Public entry point kept for backward compatibility. Delegates to connectInternal and throws on failure.

Prefer connectInternal which returns a typed SfuConnectionResult instead of throwing, enabling exhaustive when handling.