queryStringForWebView property

Future<String> queryStringForWebView

Get a query-string to add to the URL of a WebView or Chrome Custom Tab to pass the consent status from the app to the Didomi Web SDK embedded on the target URL. Note: Available for Android only, will return an empty string if called from iOS

Implementation

static Future<String> get queryStringForWebView async {
  final String result = await _channel.invokeMethod("getQueryStringForWebView");
  return result;
}