getKeys method

Future<Set<String>> getKeys()

Returns all stored keys.

Implementation

Future<Set<String>> getKeys() async {
  final all = await getAll();
  return all.keys.toSet();
}