userLivePlayer method

dynamic userLivePlayer()

Implementation

userLivePlayer() {
  // 先判断是不是小班课
  bool useLivePlayer = true;
  final classInfo = _classInfoObs.getClassInfo();
  final roomType = classInfo.roomInfo.roomType;
  if (roomType != 1) {
    useLivePlayer = false;
  }
  return useLivePlayer;
}