tags property

Future<List<String>> tags

Gets the channel tags.

Implementation

Future<List<String>> get tags async {
  List tags = await (_module.channel.invokeMethod("channel#getTags"));
  return tags.cast<String>();
}