storeStructuredData method

Future<void> storeStructuredData(
  1. String id,
  2. String source,
  3. dynamic data
)

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);
}