getStructuredData method

Future getStructuredData(
  1. String id
)

Gets structured data from the storage manager

id is the unique identifier for the data

Implementation

Future<dynamic> getStructuredData(String id) {
  return _storageManager.getStructuredData(id);
}