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