FancyDrawSummary constructor

const FancyDrawSummary({
  1. Key? key,
  2. required List<FancyWinnerItem> winners,
  3. String title = 'Draw Completed!',
  4. String subtitlePrefix = 'Winners selected:',
  5. String listTitle = 'Selected Winners List:',
})

Implementation

const FancyDrawSummary({
  super.key,
  required this.winners,
  this.title = 'Draw Completed!',
  this.subtitlePrefix = 'Winners selected:',
  this.listTitle = 'Selected Winners List:',
});