channelJoinAllSiteFuture method
Return: Message
Implementation
Future<MessageOrError> channelJoinAllSiteFuture(String channel) async {
final res = await ZeroNet.instance.cmdFuture(
ZeroNetCmd.channelJoinAllsite,
params: {
'channel': channel,
},
);
return res.toMsgOrErr;
}