getKeys method

Future<Set<String>> getKeys()

获取所有的key 类型为Set

Implementation

Future<Set<String>> getKeys() async {
  await _initialize();
  return _storage!.getKeys();
}