internalOnlyStoreEntry method
Implementation
AFibStoreStackEntry internalOnlyStoreEntry(AFConceptualStore conceptual) {
if(uiStore!.store!.state.public.conceptualStore == conceptual) {
return uiStore!;
} else {
assert(backgroundStore!.store!.state.public.conceptualStore == conceptual);
return backgroundStore!;
}
}