removeTagWithKey method

void removeTagWithKey(
  1. String key
)

Remove all tags with the given key from all future logs sent by this logger.

Previous logs won't lose the this tag if they were created prior to this call.

Implementation

void removeTagWithKey(String key) {
  wrap('logs.removeTagWithKey', _internalLogger, null, () {
    return _platform.removeTagWithKey(loggerHandle, key);
  });
}