getWebViewIntegration method

WebViewIntegration getWebViewIntegration({
  1. bool ignoreTrackerNamespace = true,
})

Returns a WebViewIntegration instance that can be used to track events from a WebView. The WebViewIntegration instance will ignore the tracker namespace by default, meaning that it will track events for any tracker that sends them to the WebView. If you want to track events only for this tracker, set ignoreTrackerNamespace to false.

Implementation

WebViewIntegration getWebViewIntegration(
    {bool ignoreTrackerNamespace = true}) {
  return WebViewIntegration(
      tracker: this, ignoreTrackerNamespace: ignoreTrackerNamespace);
}