NumberInput constructor

NumberInput({
  1. num step = 1,
  2. num min = 0,
  3. num? max,
  4. num? errorDefault = 0,
})

Implementation

NumberInput({
  this.step = 1,
  this.min = 0,
  this.max,
  this.errorDefault = 0,
});