unsubscribe method

Future<void> unsubscribe(
  1. String subscriptionId
)

Unsubscribes from a real-time event subscription.

subscriptionId is the ID returned by subscribeToEvents.

Throws EventLogException if the operation fails.

Implementation

Future<void> unsubscribe(String subscriptionId) {
  throw UnimplementedError('unsubscribe() has not been implemented.');
}