readAll method

Future<Map<String, String>> readAll()

读取所有存储项(以键值对 Map 返回)

注意:此方法不会对值进行解密,返回的 value 为加密状态

Implementation

Future<Map<String, String>> readAll() async {
  final all = await storage.readAll();
  debugPrint('SecuredStorage [READ_ALL]: $all');
  return all;
}