augmentWith method

String augmentWith(
  1. Map<String, String> env
)

Adds a set of values to the environment and returns the token for removing the augments. Augments can be removed calling removeAugment with the returned token.

Implementation

String augmentWith(Map<String, String> env) {
  final uuid = Uuid().v4();
  _augments[uuid] = env;
  return uuid;
}