NiceRoundList constructor
- Key? key,
- required List<
NiceRound> rounds, - void onMatchTap(
- NiceRoundMatch match
- String title = 'Tournament Bracket',
Implementation
const NiceRoundList({
super.key,
required this.rounds,
this.onMatchTap,
this.title = 'Tournament Bracket',
});