Hi
Is there a difference if when doing:
private val scope = parentScope.childScope("MyViewModel",Dispatchers.Default)
and:
private val scope = parentScope.childScope("MyViewModel")
If I am not setting a Dispatcher will the Default be selected anyway?
Thanks