httpsCallable method
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);
}