getKeys method

Future<Set<String>> getKeys({
  1. Set<String>? allowList,
})

Get the set of all keys stored in SharedPreferences.

Implementation

Future<Set<String>> getKeys({Set<String>? allowList}) async {
  assert(_key != null);
  return _decorator.getKeys(allowList: allowList);
}