pusher-channels-flutter icon indicating copy to clipboard operation
pusher-channels-flutter copied to clipboard

connect with two or more channel

Open kwul0208 opened this issue 3 years ago • 1 comments

how to connect with two channel pusher in flutter? I already have a flutter which is already connected to one channel

kwul0208 avatar Sep 18 '22 14:09 kwul0208

Are you looking to subscribe to two channels, for example 'chat-ben' and 'chat-andrea'? To do this you would simply subscribe to another channel using the standard subscribe code -

final benChannel = await pusher.subscribe(channelName: "chat-ben"); final andreaChannel = await pusher.subscribe(channelName: "chat-andrea");

benw-pusher avatar Sep 20 '22 10:09 benw-pusher