getData method

dynamic getData(
  1. String id
)

Gets data from the storage manager

id is the unique identifier for the data

Implementation

dynamic getData(String id) {
  return _storageManager.getData(id);
}