httpsCallableFromUri method

HttpsCallable httpsCallableFromUri(
  1. Uri uri, {
  2. HttpsCallableOptions? options,
})

A reference to the Callable HTTPS trigger with the given Uri.

Should be Uri of the 2nd gen Callable function in Firebase.

Implementation

HttpsCallable httpsCallableFromUri(
  Uri uri, {
  HttpsCallableOptions? options,
}) {
  options ??= HttpsCallableOptions();
  return HttpsCallable._(
      delegate.httpsCallableWithUri(_origin, uri, options));
}