getValue method
Implementation
@override
V getValue(DepAccess<V, D> access) {
assert(
_initialized,
'You have forgotten to add ${access.dep.runtimeType} to initializeQueue or it '
'has been used before initialization by another dep. '
'Try to reorder deps in initializeQueue.',
);
return super.getValue(access);
}