httpsCallable method

HttpsCallable httpsCallable(
  1. String name, [
  2. HttpsCallableOptions? options
])

Implementation

HttpsCallable httpsCallable(String name,
    [functions_interop.HttpsCallableOptions? options]) {
  functions_interop.HttpsCallableJsImpl httpCallableImpl;
  if (options != null) {
    httpCallableImpl = jsObject.httpsCallable(name, options);
  } else {
    httpCallableImpl = jsObject.httpsCallable(name);
  }
  return HttpsCallable.getInstance(httpCallableImpl);
}