async<T> static method
Creates an asynchronous store definition from builder.
Returns a LevitAsyncStore that resolves to T instead of Future<T>.
Implementation
static LevitAsyncStore<T> async<T>(Future<T> Function(LevitRef ref) builder) {
return LevitAsyncStore<T>(builder);
}