getItem method

dynamic getItem (String key)

Returns a value from storage by key

Implementation

getItem(String key) {
  return _data[key];
}