addAll method
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);
}
}