removeTags method
- 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);
}
Removes channel tags. Deprecated. Use editTags() instead.
Future<void> removeTags(List<String> tags) async {
return await _module.channel.invokeMethod('channel#removeTags', tags);
}