findIn method

Future<T> findIn(
  1. LevitScope scope, {
  2. String? tag,
})

Finds or creates and resolves the store value within scope.

Uses optional tag to isolate independent instances.

Throws if initialization fails.

Implementation

Future<T> findIn(LevitScope scope, {String? tag}) {
  return _inner.findIn(scope, tag: tag);
}