join method
Join a channel, with its key when it has one.
client.join('#obby');
client.join('#staff', key: 'hunter2');
Implementation
void join(String channel, {String? key}) {
_alive();
command({'type': 'join', 'channel': channel, 'key': key});
}