ValuePrompt constructor

ValuePrompt({
  1. required String title,
  2. num min = 0,
  3. num max = 100,
  4. num initial = 50,
  5. num step = 1,
  6. PromptTheme theme = PromptTheme.dark,
})

Implementation

ValuePrompt({
  required this.title,
  this.min = 0,
  this.max = 100,
  this.initial = 50,
  this.step = 1,
  this.theme = PromptTheme.dark,
});