isListenedChannel static method

Future<bool?> isListenedChannel(
  1. String channelId
)

是否是已订阅频道

Implementation

static Future<bool?> isListenedChannel(String channelId) async {
  return await _channel
      .invokeMethod("isListenedChannel", {"channelId": channelId});
}