unsubscribe method

void unsubscribe(
  1. Notifier notifier
)

Implementation

void unsubscribe(Notifier notifier) {
  _handlePush(
      _absintheChannel.push(
          event: 'unsubscribe',
          payload: {'subscriptionId': notifier.subscriptionId}),
      _createPushHandler(unsubscriptionHandler, notifier));
}