isSuggested method

bool isSuggested(
  1. AskUserChoice option
)

Implementation

bool isSuggested(AskUserChoice option) {
  if (askUserData?.suggestedChoiceIndex == null) return false;
  return askUserData?.suggestedChoiceIndex == option.index;
}