size method

  1. @override
Future<int> size(
  1. String name
)
override

The number of entries in the store for the named cache

  • name: The cache name

Implementation

@override
Future<int> size(String name) => Future.value(_cacheStore(name).length);