remove<T> method

  1. @override
Future<bool> remove<T>(
  1. int id
)
override

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);
  }
}