leaveChannel method
Implementation
void leaveChannel(String channel, String type) {
final leaveC = _getChannelWithKey(type);
if (leaveC == null) {
return;
}
_presence = null;
leaveC.off("message");
leaveC.off("1-1");
leaveC.off("chat");
leaveC.leave();
_removeChannelWithKey(type);
}