completeSurvey method
Completes the survey and returns the steps.
Returns:
- A list of SurveyStep objects representing the completed steps.
Implementation
List<SurveyStep> completeSurvey() {
Navigator.of(context).pop();
return steps;
}
Completes the survey and returns the steps.
Returns:
List<SurveyStep> completeSurvey() {
Navigator.of(context).pop();
return steps;
}