RankingSummary constructor

const RankingSummary({
  1. required int count,
  2. required int stableCount,
  3. required int tieGroupCount,
  4. required double medianGap,
})

Implementation

const RankingSummary({
  required this.count,
  required this.stableCount,
  required this.tieGroupCount,
  required this.medianGap,
});