addOrUpdateContextAll method
Adds or replaces multiple contexts by name.
Implementation
void addOrUpdateContextAll(Iterable<EvaluationContext> contexts) {
context ??= {};
for (final c in contexts) {
context![c.name] = c;
}
}
Adds or replaces multiple contexts by name.
void addOrUpdateContextAll(Iterable<EvaluationContext> contexts) {
context ??= {};
for (final c in contexts) {
context![c.name] = c;
}
}