httpsCallable method

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

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

Implementation

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