keys method

The cache keys.

Returns an unmodifiable list of all cache keys without duplicates.

Implementation

@override
Future<UnmodifiableListView<String>> keys() async {
  return UnmodifiableListView(_sharedPreferences.getKeys());
}