openFreshchatDeeplink static method

void openFreshchatDeeplink(
  1. String link
)

Open Freshchat deeplinks.

This can be used to open specific channels and specific FAQs specified in the deeplink

Implementation

static void openFreshchatDeeplink(String link) {
  _channel.invokeMethod("openFreshchatDeeplink", <String, String>{
    'link': link,
  });
}