NiceRoundList constructor

const NiceRoundList({
  1. Key? key,
  2. required List<NiceRound> rounds,
  3. void onMatchTap(
    1. NiceRoundMatch match
    )?,
  4. String title = 'Tournament Bracket',
})

Implementation

const NiceRoundList({
  super.key,
  required this.rounds,
  this.onMatchTap,
  this.title = 'Tournament Bracket',
});