findAsyncIn method

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

Asynchronously finds or creates and resolves the store value within scope.

Uses optional tag to isolate independent instances.

Throws if initialization fails.

Implementation

Future<T> findAsyncIn(LevitScope scope, {String? tag}) async {
  final future = await _inner.findAsyncIn(scope, tag: tag);
  return await future;
}