stream method

Stream stream(
  1. Object? parameters
)
inherited

Streams data to the specified HTTPS endpoint.

The data passed into the trigger can be any of the following types:

null String num List, where the contained objects are also one of these types. Map, where the values are also one of these types.

The request to the Cloud Functions backend made by this method automatically includes a Firebase Instance ID token to identify the app instance. If a user is logged in with Firebase Auth, an auth ID token for the user is also automatically included.

Implementation

Stream<dynamic> stream(Object? parameters) {
  throw UnimplementedError('stream() is not implemented');
}