quizOptionSelectedIds property

List<String> quizOptionSelectedIds

Implementation

List<String> get quizOptionSelectedIds {
  return quizOptions
      .where((element) => element.isSelected)
      .map((e) => e.optionId)
      .toList();
}