Kotlin Interface
interface SessionStore
abstract suspend fun clear()
abstract suspend fun token(): AuthToken?
abstract suspend fun update(token: AuthToken?)
Was this page helpful?