removeTags method

Future<void> removeTags(
  1. List<String> tags
)

Removes channel tags. Deprecated. Use editTags() instead.

Implementation

Future<void> removeTags(List<String> tags) async {
  return await _module.channel.invokeMethod('channel#removeTags', tags);
}