privateChannel method
Get a private channel instance by name.
Implementation
@override
SocketIoPrivateChannel privateChannel(String name) {
if (!name.startsWith("private-")) {
name = "private-$name";
}
return channel(name) as SocketIoPrivateChannel;
}