getAllKeys method

Future<Set<String>> getAllKeys()

Returns all keys with associated values.

Implementation

Future<Set<String>> getAllKeys() async {
  await _getKeys();
  return _keys;
}