getAll method

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

Get all stored cache entries.

Implementation

@override
Future<List<V>> getAll() =>
    _ensureBox().then((box) => box.value.values.map((e) => e.data).toList());