RangeValuePrompt constructor

RangeValuePrompt({
  1. required String title,
  2. num min = 0,
  3. num max = 100,
  4. num startInitial = 20,
  5. num endInitial = 80,
  6. num step = 1,
  7. PromptTheme theme = PromptTheme.dark,
})

Implementation

RangeValuePrompt({
  required this.title,
  this.min = 0,
  this.max = 100,
  this.startInitial = 20,
  this.endInitial = 80,
  this.step = 1,
  this.theme = PromptTheme.dark,
});