set method

void set(
  1. String key,
  2. String value
)

Implementation

void set(String key, String value) {
  _keyValues[key] = value;
}