getAll static method

Future<Set<String>> getAll()

Implementation

static Future<Set<String>> getAll() async {
  final SharedPreferences prefs = await _prefs;
  return prefs.getKeys();
}