getListenedChannels static method

Future<List<String>> getListenedChannels()

获取我订阅的频道

Implementation

static Future<List<String>> getListenedChannels() async {
  return convertDynamicList(
      await _channel.invokeMethod("getListenedChannels"));
}