appendToUrl static method

Future<String> appendToUrl(
  1. String url
)

Appends Adobe visitor information to the query component of the specified URL.

Implementation

static Future<String> appendToUrl(String url) =>
    _channel.invokeMethod<String>('appendToUrl', url).then((value) => value!);