getKeys method

Future<Set<String>> getKeys()

Returns all keys in the persistent storage.

Implementation

Future<Set<String>> getKeys() => readAll().then((map) => map.keys.toSet());