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