observe

abstract fun observe(observerLifecycle: Lifecycle, state: BlocObserver<State>?, sideEffect: BlocObserver<SideEffect>?)

This observe function is used for iOS to ensure generic types aren't erased. It's the equivalent of the subscribe extension function for Android. Note: the state and sideEffect parameters are of type BlocObserver which is different from the signature used in the Android observe function.