DiscreteValuePrompt constructor
DiscreteValuePrompt({
- required String title,
- int maxValue = 5,
- int initial = 3,
- PromptTheme theme = PromptTheme.dark,
Implementation
DiscreteValuePrompt({
required this.title,
this.maxValue = 5,
this.initial = 3,
this.theme = PromptTheme.dark,
}) : assert(maxValue > 0);