We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aa2c13 commit 12d92c9Copy full SHA for 12d92c9
flutter_secure_storage/lib/flutter_secure_storage.dart
@@ -344,6 +344,14 @@ class FlutterSecureStorage {
344
});
345
}
346
347
+ Future<bool> isStrongBoxSupported() async {
348
+ if (defaultTargetPlatform == TargetPlatform.android) {
349
+ return await _platform.isStrongBoxSupported();
350
+ } else {
351
+ throw UnsupportedError(_unsupportedPlatform);
352
+ }
353
354
+
355
/// Select correct options based on current platform
356
Map<String, String> _selectOptions(
357
AppleOptions? iOptions,
0 commit comments