size property

Future<int> get size

Returns the current number of items in the cache.

Implementation

Future<int> get size async {
  return await _storage.size;
}