SurveyKit constructor

const SurveyKit({
  1. required Task task,
  2. required dynamic onResult(
    1. SurveyResult
    ),
  3. ThemeData? themeData,
  4. SurveyController? surveyController,
  5. Widget appBar(
    1. AppBarConfiguration appBarConfiguration
    )?,
  6. bool? showProgress,
  7. SurveyProgressConfiguration? surveyProgressbarConfiguration,
  8. Map<String, String>? localizations,
})

Implementation

const SurveyKit({
  required this.task,
  required this.onResult,
  this.themeData,
  this.surveyController,
  this.appBar,
  this.showProgress,
  this.surveyProgressbarConfiguration,
  this.localizations,
});