removeAttribute method

void removeAttribute(
  1. String key
)

Removes the custom attribute key from all future events sent by the RUM monitor. Events created prior to this call will not lose this attribute.

Implementation

void removeAttribute(String key) {
  wrap('rum.removeAttribute', logger, null, () {
    return _platform.removeAttribute(key);
  });
}