removeTag method

Future<void> removeTag(
  1. String tagName
)

Removes a previously-added tag from all future messages from this logger.

This is not invoked and resolves silently when using Flutter web.

Implementation

Future<void> removeTag(String tagName) async {
  return await channel.invokeMethod('loggerRemoveTag', {
    'identifier': hashCode.toString(),
    'key': tagName,
  });
}