addAll method

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

Adds all of the entries in the other map as environment variables. Case translation will occur if the platform is case sensitive.

Implementation

void addAll(Map<String, String> other) {
  for (final entry in other.entries) {
    _setEnv(entry.key, entry.value);
  }
}