MephistoStepperInput constructor

const MephistoStepperInput({
  1. Key? key,
  2. required String title,
  3. String? description,
  4. int? initialValue,
  5. Function? onChange,
})

Implementation

const MephistoStepperInput(
    {super.key,
    required this.title,
    this.description,
    this.initialValue,
    this.onChange});