surveyShownCount property

int surveyShownCount

Implementation

int get surveyShownCount {
  assert(activeSurvey != null);
  final prop = _activeSurveyFromProperties;
  if (prop.surveyShownCount == null) {
    rewriteActiveSurvey(prop.surveyActionTaken, 0);
  }
  return _activeSurveyFromProperties.surveyShownCount!;
}