isInstantiatedIn method

bool isInstantiatedIn(
  1. LevitScope scope, {
  2. String? tag,
})

Checks if the store is instantiated in scope.

Implementation

bool isInstantiatedIn(LevitScope scope, {String? tag}) {
  return _inner.isInstantiatedIn(scope, tag: tag);
}