start method

void start()

Implementation

void start() async {
  final startResult = await roomController.start();
  if (TUIError.success == startResult.code) {
    await userController.getAudienceList();
    await userController.updateOwnerUserInfo();
    await seatController.getSeatList();
    if (state.operationState.userState.selfInfo.role.value == TUIRole.roomOwner) {
      await seatController.getSeatApplicationList();
    }
  }
}