selectedOptions property

List<String> selectedOptions

여러 옵션 중에서 사용자가 선택한 옵션만 리턴한다. 기본 옵션은 제외.

Implementation

List<String> get selectedOptions {
  List<String> rets = [];
  for (String option in options!.keys) {
    if (option != DEFAULT_OPTION && count(option) > 0) {
      rets.add(option);
    }
  }
  return rets;
}