From cadebfcda053897acf94e86656beba8bdf661f0c Mon Sep 17 00:00:00 2001 From: Musaddiq Ahmed Khan <37911054+Musaddiq625@users.noreply.github.com> Date: Mon, 16 Oct 2023 16:00:03 +0500 Subject: [PATCH] Update README.md updated IOSAccessibility (deprecated) to KeychainAccessibility --- flutter_secure_storage/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter_secure_storage/README.md b/flutter_secure_storage/README.md index 6255d8ee..127cc6ae 100644 --- a/flutter_secure_storage/README.md +++ b/flutter_secure_storage/README.md @@ -57,7 +57,7 @@ This allows us to be able to fetch secure values while the app is backgrounded, An example: ```dart -final options = IOSOptions(accessibility: IOSAccessibility.first_unlock); +final options = IOSOptions(accessibility: KeychainAccessibility.first_unlock); await storage.write(key: key, value: value, iOptions: options); ```