getValue method

  1. @override
V getValue(
  1. DepAccess<V, D> access
)
override

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);
}