currentFlippingContext
Retrieve the current FlippingExecutionContext from the coroutine context.
Returns an empty context if none has been set via withFlippingContext or withFlippingParameters.
Example:
suspend fun myFunction() {
val context = currentFlippingContext()
val userId: String? = context[ContextKeys.USER_ID]
// ...
}Content copied to clipboard
Return
The current FlippingExecutionContext, or an empty context if none is set