httpsCallableUri method
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);
}