storeKey method
Implementation
Future<void> storeKey(String key, String value) async {
final storage = await getSecureStorage(key);
if (storage != null) {
await storage.write(value);
// Optionally: Provide feedback to the user about the successful operation
} else {
// Handle the case where the storage could not be accessed
}
}