get method Null safety

dynamic get(
  1. String key
)

Get the value for a key if stored in memory

Implementation

dynamic get(String key) {
  return store[key];
}