storeStructuredData method
Stores structured data in the storage manager
id
is the unique identifier for the data
source
is the source of the data (e.g., the URL)
data
is the data to store
Implementation
Future<void> storeStructuredData(String id, String source, dynamic data) {
return _storageManager.storeStructuredData(id, source, data);
}