leaveChannel method

void leaveChannel(
  1. String channel,
  2. String type
)

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);
}