putNull method

void putNull(
  1. String key
)

Adds a null value to the set by the given key.

Implementation

void putNull(String key) {
  _map[key] = null;
}