From 8f05e9244a3e95b02d904137698b6a087cb4b7c9 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Fri, 6 Feb 2026 16:48:30 +0100 Subject: [PATCH] Remove deprecated option from FlutterSecureStorage --- lib/core/services/storage_service.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/core/services/storage_service.dart b/lib/core/services/storage_service.dart index 57585fa..42271d4 100644 --- a/lib/core/services/storage_service.dart +++ b/lib/core/services/storage_service.dart @@ -88,9 +88,7 @@ class StorageService { late final FlutterSecureStorage _secureStorage; StorageService() { - _secureStorage = FlutterSecureStorage( - aOptions: const AndroidOptions(encryptedSharedPreferences: true), - ); + _secureStorage = FlutterSecureStorage(); } // ---------------------------------------------------------------------------