secureRead method
Read a value from secure storage
Implementation
@override
Future<String?> secureRead(String key) async {
if (!_initialized) {
throw MCPException('Web platform is not initialized');
}
if (_storageManager == null) {
_logger.fine('Storage manager is not available');
return null;
}
return await _storageManager!.readString(key);
}