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