TimeDurationPicker constructor

const TimeDurationPicker({
  1. Key? key,
  2. required List<TimeColumnConfig> columns,
  3. double height = 168,
  4. double columnSpacing = 12.0,
  5. TimeDurationPickerTheme theme = const TimeDurationPickerTheme(),
  6. dynamic onChanged(
    1. List<int> values
    )?,
  7. bool showSeparatorLines = true,
  8. double? upperLinePosition,
  9. double? lowerLinePosition,
  10. double? width,
})

Implementation

const TimeDurationPicker({
  super.key,
  required this.columns,
  this.height = 168,
  this.columnSpacing = 12.0,
  this.theme = const TimeDurationPickerTheme(),
  this.onChanged,
  this.showSeparatorLines = true,
  this.upperLinePosition,
  this.lowerLinePosition,
  this.width,
});