addDict method

void addDict(
  1. HDict dict
)

Adds all the name/value pairs in given HDict.

Skips all null values.

Implementation

void addDict(HDict dict) {
  dict.forEach((key, value) {
    _add(key, value);
  });
}