Using twilio-chat.js how can I listen for messages on a single channel? I found this question which asks how to listen on multiple channels, but I can't find anything describing how to do this on a single channel.
(Where token
is an Access Token).
Currently I have:
let client = await Twilio.Chat.Client.create(token);
client.on('messageAdded', function(message){...})