removeTag method
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,
});
}