httpsCallableUri method

HttpsCallable httpsCallableUri(
  1. Uri uri, [
  2. HttpsCallableOptions? options
])

Implementation

HttpsCallable httpsCallableUri(Uri uri,
    [functions_interop.HttpsCallableOptions? options]) {
  JSFunction httpCallableImpl;
  if (options != null) {
    httpCallableImpl = functions_interop.httpsCallableFromURL(
        jsObject, uri.toString().toJS, options);
  } else {
    httpCallableImpl =
        functions_interop.httpsCallableFromURL(jsObject, uri.toString().toJS);
  }
  return HttpsCallable.getInstance(httpCallableImpl);
}