FeedBackText constructor

const FeedBackText({
  1. Key? key,
  2. required Function func,
  3. required Map answer,
  4. required Map question,
  5. required Map theme,
  6. required Map<String, String> customParams,
  7. required Function handleFeedBackText,
  8. required Map parentQuestion,
  9. Map? euiTheme,
})

Implementation

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