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