openWeChatCustomerServiceChat function

Future<bool> openWeChatCustomerServiceChat({
  1. required String url,
  2. required String corpId,
})

Implementation

Future<bool> openWeChatCustomerServiceChat(
    {required String url, required String corpId}) async {
  return await _channel.invokeMethod(
      "openWeChatCustomerServiceChat", {"corpId": corpId, "url": url});
}