getInstance static method

HttpsCallable getInstance(
  1. JSFunction jsObject
)

Creates a new HttpsCallable from a jsObject.

Implementation

static HttpsCallable getInstance(JSFunction jsObject) {
  return _expando[jsObject] ??= HttpsCallable._fromJsObject(jsObject);
}