appendingQueryParameter static method

  1. @Deprecated("User sync function using query parameters is deprecated. It will be removed in the future.")
Future<String> appendingQueryParameter(
  1. String url
)

指定されたURL文字列にWebView連携用のクエリパラメータを付与します。

url に連携するページのURL文字列を指定すると、連携用のクエリパラメータを付与したURL文字列を返します。 指定されたURL文字列の形式が正しくない場合、またはSDKの初期化が行われていない場合は、引数に指定したURL文字列を返します。

Implementation

@Deprecated(
    "User sync function using query parameters is deprecated. It will be removed in the future.")
static Future<String> appendingQueryParameter(String url) async {
  return await _channel.invokeMethod(
          'UserSync_appendingQueryParameter', {"url": url}, url)
      as FutureOr<String>;
}