Reviews constructor

const Reviews({
  1. required double rating,
  2. required int count,
})

Implementation

const Reviews({
  required this.rating,
  required this.count
});