HttpsCallablePlatform class abstract

Interface for HttpsCallable implementations.

A reference to a particular Callable HTTPS trigger in Cloud Functions.

Inheritance
  • Object
  • PlatformInterface
  • HttpsCallablePlatform

Constructors

HttpsCallablePlatform(FirebaseFunctionsPlatform functions, String? origin, String? name, HttpsCallableOptions options, Uri? uri)
Creates a new HttpsCallablePlatform instance.

Properties

functions FirebaseFunctionsPlatform
The FirebaseFunctionsPlatform instance.
final
hashCode int
The hash code for this object.
no setterinherited
name String?
The name of the function
final
options HttpsCallableOptions
Used to set the options for this instance.
getter/setter pair
origin String?
The origin of the local emulator, such as "http://localhost:5001"
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
uri Uri?
The URI of the function for 2nd gen functions
final

Methods

call([dynamic parameters]) Future
Executes this Callable HTTPS trigger asynchronously.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

verify(HttpsCallablePlatform instance) → void
Throws an AssertionError if instance does not extend HttpsCallablePlatform.
override