join method
void
join()
Implementation
void join() async {
final startResult = await roomController.join(getRoomSate().roomId);
if (TUIError.success == startResult.code) {
await userController.getAudienceList();
await userController.updateOwnerUserInfo();
await seatController.getSeatList();
if (getRoomSate().ownerInfo.userId != getUserState().selfInfo.userId) {
userController.checkFollowType(getRoomSate().ownerInfo.userId);
}
}
}