put method

void put(
  1. String key,
  2. dynamic value
)

Implementation

void put(String key, dynamic value) {
  _store[key] = value;
}