CustomPickerContentPopUp constructor

const CustomPickerContentPopUp({
  1. Key? key,
  2. required ValueChanged<List<int>> handleChanged,
  3. required VoidCallback onChanged,
  4. required VoidCallback onCancel,
  5. required double height,
  6. required List<int> selected,
  7. required List<FixedExtentScrollController> controllers,
  8. required List<List> data,
  9. List<bool>? optionLoop,
  10. bool? yesNo,
  11. EdgeInsets? popUpMargin,
  12. Color? popUpSelColor,
  13. Decoration? popUpDecoration,
  14. List<TextStyle>? popUpTextStyle,
})

Implementation

const CustomPickerContentPopUp({
  Key? key,
  required this.handleChanged,
  required this.onChanged,
  required this.onCancel,
  required this.height,
  required this.selected,
  required this.controllers,
  required this.data,
  this.optionLoop,
  this.yesNo,
  this.popUpMargin,
  this.popUpSelColor,
  this.popUpDecoration,
  this.popUpTextStyle,
}) : super(key: key);