removeEventEnv method

Map<String, String>? removeEventEnv(
  1. String token
)

Removes previous applied environment augments based on the token and returns the Map of augments that were applied.

Implementation

Map<String, String>? removeEventEnv(String token) {
  return config.removeAugment(token);
}