removeTag method

void removeTag(
  1. String tag
)

Remove a given tag 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 removeTag(String tag) {
  wrap('logs.removeTag', _internalLogger, null, () {
    return _platform.removeTag(loggerHandle, tag);
  });
}