getKeys method

Set<String> getKeys()

Get the set of all keys stored in SharedPreferences.

Implementation

Set<String> getKeys() {
  assert(_key != null);
  return _decorator.getKeys();
}