NumberPickerColumn constructor

const NumberPickerColumn({
  1. int begin = 0,
  2. int end = 9,
  3. List<int>? items,
  4. int? initValue,
  5. int jump = 1,
  6. int columnFlex = 1,
  7. Widget? postfix,
  8. Widget? suffix,
  9. PickerValueFormat<int>? onFormatValue,
})

Implementation

const NumberPickerColumn({
  this.begin = 0,
  this.end = 9,
  this.items,
  this.initValue,
  this.jump = 1,
  this.columnFlex = 1,
  this.postfix,
  this.suffix,
  this.onFormatValue,
});