SurveyPage constructor

const SurveyPage({
  1. Key? key,
  2. required int length,
  3. required dynamic onResult(
    1. SurveyResult
    ),
  4. required GlobalKey<NavigatorState> navigatorKey,
  5. PreferredSizeWidget? appBar,
  6. Decoration? decoration,
  7. Color? backgroundColor,
})

Implementation

const SurveyPage({
  super.key,
  required this.length,
  required this.onResult,
  required this.navigatorKey,
  this.appBar,
  this.decoration,
  this.backgroundColor,
});