httpsCallable method

HttpsCallable httpsCallable(
  1. String name, {
  2. HttpsCallableOptions? options,
})

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

Should be the name of the Callable function in Firebase

Implementation

HttpsCallable httpsCallable(
  String name, {
  HttpsCallableOptions? options,
}) {
  assert(name.isNotEmpty);
  options ??= HttpsCallableOptions();
  return HttpsCallable._(delegate.httpsCallable(_origin, name, options));
}