getAll<T> method

  1. @override
Future<List<T>> getAll<T>()
override

Implementation

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