put method

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

Implementation

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