removeMany<T> method

  1. @override
Future<int> removeMany<T>(
  1. List<int> ids
)
override

Implementation

@override
Future<int> removeMany<T>(List<int> ids) async {
  try {
    _ensureStoreInitialized();
    final box = _store!.box<T>();
    return box.removeMany(ids);
  } catch (e) {
    throw DatabaseBridgeException(error: e);
  }
}