NiceRoundCard constructor

const NiceRoundCard({
  1. Key? key,
  2. required NiceEventRound round,
  3. bool timerRunning = false,
  4. int? remainingSeconds,
  5. void onSubmitScore(
    1. String participantId,
    2. double score
    )?,
  6. VoidCallback? onStart,
  7. VoidCallback? onEnd,
  8. VoidCallback? onSkip,
  9. bool editable = false,
  10. Widget? footerActions,
})

Implementation

const NiceRoundCard({
  super.key,
  required this.round,
  this.timerRunning = false,
  this.remainingSeconds,
  this.onSubmitScore,
  this.onStart,
  this.onEnd,
  this.onSkip,
  this.editable = false,
  this.footerActions,
});