MiniStepper constructor

const MiniStepper({
  1. Key? key,
  2. required int value,
  3. int min = 0,
  4. int max = 9999,
  5. ValueChanged<int>? onChanged,
})

Implementation

const MiniStepper({
  super.key,
  required this.value,
  this.min = 0,
  this.max = 9999,
  this.onChanged,
});