Scorecard constructor

const Scorecard({
  1. required int aces,
  2. required int mostCards,
  3. required int mostSpades,
  4. required int suipiCount,
  5. required int tenOfDiamonds,
  6. required int twoOfSpades,
  7. required int total,
})

Implementation

const Scorecard({
  required this.aces,
  required this.mostCards,
  required this.mostSpades,
  required this.suipiCount,
  required this.tenOfDiamonds,
  required this.twoOfSpades,
  required this.total,
});