removeTags static method

Future<void> removeTags({
  1. List<String>? tags,
})

Utility to remove tags that were added to the conversation.

Implementation

static Future<void> removeTags({List<String>? tags}) async {
  await _channel.invokeMethod<void>('removeTags', {
    'tags': tags,
  });
}