joinChatRoom method
Implementation
Future<void> joinChatRoom({
required String roomId,
bool leaveOther = true,
String? ext,
}) async {
return checkResult(ChatSDKEvent.joinChatRoom, () {
return Client.getInstance.chatRoomManager
.joinChatRoom(roomId, leaveOther: leaveOther, ext: ext);
});
}