CustomRating constructor

CustomRating({
  1. bool? skipped,
  2. int? data,
  3. int? timeTaken,
  4. String name = "Rating",
  5. required int key,
})

Implementation

CustomRating({
    this.skipped,
    this.data,
    this.timeTaken,
    this.name = "Rating",
    required this.key,
});