addAll method

void addAll(
  1. Map<String, String> values
)

Set multiple session key:value pairs

Implementation

void addAll(Map<String, String> values) {
  _data.addAll(values);
  needsUpdate = true;
}