isRegisteredIn method

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

Checks if the store is registered in scope.

Implementation

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