unsubscribe method

  1. @override
void unsubscribe()
override

Sends the unsubscription event through the connectionDelegate.

Implementation

@override
void unsubscribe() {
  connectionDelegate.sendEvent(
    ChannelUnsubscribeEvent(
      channelName: name,
    ),
  );
  super.unsubscribe();
}