secureStore method
Store a value securely
Implementation
@override
Future<void> secureStore(String key, String value) async {
if (!_initialized) {
throw MCPException('Web platform is not initialized');
}
if (_storageManager == null) {
_logger.fine('Storage manager is not available');
return;
}
await _storageManager!.saveString(key, value);
}