unsubscribe method
Sends the unsubscription event through the connectionDelegate.
Implementation
@override
void unsubscribe() {
connectionDelegate.sendEvent(
ChannelUnsubscribeEvent(
channelName: name,
),
);
super.unsubscribe();
}