RatingQuestion constructor

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

Implementation

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