My question is that how we can emit a value from a built flow object like this:
class Sample {
    var flow: Flow<Object> = null
    fun sendRequest(){
       flow = flow{}
       requestWrapper.flowResponse = flow
    }
    fun getResponse(){
       // I want to emit data here with built flow object on 
       // requestWrapper like this
        requestWrapper.flowResponse.emit()
    }
}
is any possible solution for this issue?
 
                        
You can use
MutableSharedFlowto emit values like in your case: