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