From 64756f4fd7c1d02b21d1e44b57986c5fa3fe1713 Mon Sep 17 00:00:00 2001 From: TechAdeptRDD <39470203+TechAdeptRDD@users.noreply.github.com> Date: Sat, 21 Feb 2026 00:25:34 -0500 Subject: [PATCH] fix: resolve prefer_const_declarations in secure storage service --- flutter_app/lib/services/secure_storage_service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter_app/lib/services/secure_storage_service.dart b/flutter_app/lib/services/secure_storage_service.dart index 75d400c..5664e88 100644 --- a/flutter_app/lib/services/secure_storage_service.dart +++ b/flutter_app/lib/services/secure_storage_service.dart @@ -16,7 +16,7 @@ class SecureStorageService { String? _cachedFiatPreference; static const AndroidOptions _androidOptions = AndroidOptions(encryptedSharedPreferences: true, resetOnError: true); - static final IOSOptions _iosOptions = const IOSOptions( + static const IOSOptions _iosOptions = IOSOptions( accessibility: KeychainAccessibility.passcode, synchronizable: false,