static String? decrypt(String encryptedData) { try { final decrypted = _encrypter.decrypt64(encryptedData); return decrypted; } catch (e) { print('Decryption failed: $e'); return null; } }