joinChannel method
Future<Channel>
joinChannel({
- required String target,
- required ChannelJoin_Type type,
- required bool persistence,
Implementation
Future<rtpb.Channel> joinChannel({
required String target,
required rtpb.ChannelJoin_Type type,
required bool persistence,
required bool hidden,
}) =>
_send<rtpb.Channel>(rtpb.Envelope(
channelJoin: rtpb.ChannelJoin(
target: target,
type: type.value,
persistence: BoolValue(value: persistence),
hidden: BoolValue(value: hidden),
)));