SelectionCommonItemWidget constructor

SelectionCommonItemWidget({
  1. Key? key,
  2. required SelectionEntity item,
  3. Color? backgroundColor,
  4. bool isFirstLevel = false,
  5. bool isMoreSelectionListType = false,
  6. ValueChanged<SelectionEntity>? itemSelectFunction,
  7. Color? selectedBackgroundColor,
  8. bool isCurrentFocused = false,
  9. SelectionConfig? themeData,
})

Implementation

SelectionCommonItemWidget({
  Key? key,
  required this.item,
  this.backgroundColor,
  this.isFirstLevel = false,
  this.isMoreSelectionListType = false,
  this.itemSelectFunction,
  this.selectedBackgroundColor,
  this.isCurrentFocused = false,
  this.themeData,
}) : super(key: key);