addAll method

void addAll(
  1. Map vars
)

Implementation

void addAll(Map vars) {
  vars.forEach((key, value) {
    this[key] = value;
  });
}