PlexFormFieldStepper constructor

const PlexFormFieldStepper({
  1. Key? key,
  2. PlexFormFieldGeneric properties = const PlexFormFieldGeneric.empty(),
  3. num? value,
  4. num? min,
  5. num? max,
  6. num step = 1,
  7. void onChanged(
    1. num value
    )?,
  8. bool allowDecimal = false,
})

Implementation

const PlexFormFieldStepper({
  super.key,
  this.properties = const PlexFormFieldGeneric.empty(),
  this.value,
  this.min,
  this.max,
  this.step = 1,
  this.onChanged,
  this.allowDecimal = false,
});