httpsCallable method

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

Implementation

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