getKeys static method

Future<Set<String>> getKeys()

Get all the keys.

Implementation

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