MultiRangePickerCommonItem constructor

MultiRangePickerCommonItem({
  1. required PickerEntity item,
  2. Color normalColor = const Color(0Xff4a4e59),
  3. Color selectColor = const Color(0xff41bc6a),
  4. Color? backgroundColor,
  5. bool isFirstLevel = false,
  6. bool isMoreSelectionListType = false,
  7. ValueChanged<PickerEntity>? itemSelectFunction,
  8. Color? selectedBackgroundColor,
  9. bool? isCurrentFocused,
})

Implementation

MultiRangePickerCommonItem({
  required this.item,
  this.normalColor = const Color(0Xff4a4e59),
  this.selectColor = const Color(0xff41bc6a),
  this.backgroundColor,
  this.isFirstLevel = false,
  this.isMoreSelectionListType = false,
  this.itemSelectFunction,
  this.selectedBackgroundColor,
  this.isCurrentFocused,
});