RatingQuestion constructor

const RatingQuestion({
  1. Key? key,
  2. required Function func,
  3. required Map answer,
  4. required Map question,
})

Implementation

const RatingQuestion({Key? key, required this.func, required this.answer, required this.question})
    : super(key: key);