httpsCallable method
HttpsCallable
httpsCallable(
- String name, {
- HttpsCallableOptions options = HttpsCallableOptions.defaultOptions,
Creates an HttpsCallable instance to access a particular cloud function
Implementation
HttpsCallable httpsCallable(
String name, {
HttpsCallableOptions options = HttpsCallableOptions.defaultOptions,
}) {
assert(name.isNotEmpty, 'HttpsCallable name must not be an empty string');
return HttpsCallable(
origin: _origin,
app: app,
region: region,
name: name,
options: options,
client: _client,
);
}