ExampleQuestion constructor

const ExampleQuestion({
  1. required String question,
  2. ExampleQuestionConfig? config,
})

Implementation

const ExampleQuestion({
  required this.question,
  this.config,
});