set method

Future<Null> set (K key, V value)
override

Sets the value associated with key. The Future completes with null when the operation is complete.

Implementation

Future<Null> set(K key, V value) async {
  _map[key] = value;
}