SurveyKit constructor

const SurveyKit({
  1. Key? key,
  2. required Task task,
  3. required dynamic onResult(
    1. SurveyResult
    ),
  4. SurveyController? surveyController,
  5. SurveyProgressConfiguration? surveyProgressbarConfiguration,
  6. PreferredSizeWidget? appBar,
  7. Map<String, String>? localizations,
  8. StepShell? stepShell,
  9. BoxDecoration? decoration,
  10. Color? backgroundColor,
})

Implementation

const SurveyKit({
  super.key,
  required this.task,
  required this.onResult,
  this.surveyController,
  this.surveyProgressbarConfiguration,
  this.appBar,
  this.localizations,
  this.stepShell,
  this.decoration,
  this.backgroundColor,
});