secureRead static method

Future<String?> secureRead(
  1. String key,
  2. String value
)

读取加密存储

Implementation

static Future<String?> secureRead(String key, String value) async {
  return await storage.read(key: key);
}