isEmpty method

  1. @override
Future<bool> isEmpty()
override

Checks if the cache is empty.

Returns true if no elements are stored

Implementation

@override
Future<bool> isEmpty() async {
  return _cache.isEmpty;
}