Using Koin library I'm trying to achive this behaviour:
val scopeA = getScope(ID)
val scopeB = scopeA.clone()
Short speaking, clone()
should copy all instances from one scope to another.
So in this case I can modify scopeB
without modifying the original scopeA
.
Is this possible?