getSelectedGroupLiveCode method

String getSelectedGroupLiveCode()

Implementation

String getSelectedGroupLiveCode() {
  if (_config.groupLiveCode != null && _config.groupLiveCode!.isNotEmpty) {
    return _config.groupLiveCode!;
  }
  final classInfo = _classInfoObs.getClassInfo();
  if (isStudent() && classInfo.roomInfo.groupLiveCodes.isNotEmpty) {
    return classInfo.roomInfo.groupLiveCodes.first;
  }
  return '';
}