TDMultiLinkedPicker constructor

const TDMultiLinkedPicker({
  1. String? title,
  2. required MultiPickerCallback? onConfirm,
  3. MultiPickerCallback? onCancel,
  4. required List selectedData,
  5. required Map data,
  6. required int columnNum,
  7. double pickerHeight = 200,
  8. int pickerItemCount = 5,
  9. Widget? customSelectWidget,
  10. TextStyle? leftTextStyle,
  11. TextStyle? rightTextStyle,
  12. TextStyle? centerTextStyle,
  13. double? titleHeight,
  14. double? topPadding,
  15. double? leftPadding,
  16. double? rightPadding,
  17. Color? titleDividerColor,
  18. Color? backgroundColor,
  19. double? topRadius,
  20. EdgeInsets? padding,
  21. ItemDistanceCalculator? itemDistanceCalculator,
  22. Key? key,
})

Implementation

const TDMultiLinkedPicker({
  this.title,
  required this.onConfirm,
  this.onCancel,
  required this.selectedData,
  required this.data,
  required this.columnNum,
  this.pickerHeight = 200,
  this.pickerItemCount = 5,
  this.customSelectWidget,
  this.leftTextStyle,
  this.rightTextStyle,
  this.centerTextStyle,
  this.titleHeight,
  this.topPadding,
  this.leftPadding,
  this.rightPadding,
  this.titleDividerColor,
  this.backgroundColor,
  this.topRadius,
  this.padding,
  this.itemDistanceCalculator,
  Key? key,
}) : super(key: key);