getAllObjects method

  1. @override
Future<List<CacheObject>> getAllObjects()
override

Gets the list of all objects in the cache

Implementation

@override
Future<List<CacheObject>> getAllObjects() async {
  return _cacheObjects.values.toList();
}