FancyDrawStats constructor

const FancyDrawStats({
  1. Key? key,
  2. String participantsLabel = 'Participants',
  3. String drawnLabel = 'Drawn',
  4. String remainingLabel = 'Remaining',
  5. required int participantsCount,
  6. required int drawnCount,
  7. required int remainingCount,
  8. Color primaryColor = const Color(0xFFFBBF24),
})

Implementation

const FancyDrawStats({
  super.key,
  this.participantsLabel = 'Participants',
  this.drawnLabel = 'Drawn',
  this.remainingLabel = 'Remaining',
  required this.participantsCount,
  required this.drawnCount,
  required this.remainingCount,
  this.primaryColor = const Color(0xFFFBBF24),
});