FeedBackQuestionColumn constructor

const FeedBackQuestionColumn({
  1. Key? key,
  2. required Map question,
  3. required int currentQuestionNumber,
  4. required Map theme,
  5. required Map<String, String> customParams,
  6. required Map answer,
  7. required Map parentQuestion,
  8. Map? euiTheme,
})

Implementation

const FeedBackQuestionColumn({
  Key? key,
  required this.question,
  required this.currentQuestionNumber,
  required this.theme,
  required this.customParams,
  required this.answer,
  required this.parentQuestion,
  this.euiTheme,
}) : super(key: key);