removeManyAsync method

Future<int> removeManyAsync(
  1. List<int> ids
)

Like removeMany, but runs in a worker isolate.

If you need to call this multiple times consider using the synchronous variant (e.g. removeMany) and wrap the calls in Store.runInTransactionAsync. This has typically better performance as only a single worker isolate has to be spawned.

Implementation

Future<int> removeManyAsync(List<int> ids) async =>
    await _store.runAsync(_removeManyAsyncCallback<T>, ids);