ItemWidget constructor

const ItemWidget({
  1. Key? key,
  2. double? height,
  3. int? index,
  4. List<SectionCity>? list,
  5. String? title,
  6. String? selectText,
  7. Color? backgroundColor,
  8. double? paddingLeft,
  9. double? itemHeadHeight,
  10. Color? itemHeadBackgroundColor,
  11. Color? itemHeadLineColor,
  12. double? itemHeadLineHeight,
  13. TextStyle? itemHeadTextStyle,
  14. double? itemHeight,
  15. double? indexBarWidth,
  16. double? indexBarItemHeight,
  17. Color? indexBarBackgroundColor,
  18. TextStyle? indexBarTextStyle,
  19. Widget? itemSelectedIconWidget,
  20. TextStyle? itemSelectedTextStyle,
  21. TextStyle? itemUnSelectedTextStyle,
  22. ItemClickListener? itemClickListener,
})

Implementation

const ItemWidget({
  Key? key,
  this.height,
  this.index,
  this.list,
  this.title,
  this.selectText,
  this.backgroundColor,
  this.paddingLeft,
  this.itemHeadHeight,
  this.itemHeadBackgroundColor,
  this.itemHeadLineColor,
  this.itemHeadLineHeight,
  this.itemHeadTextStyle,
  this.itemHeight,
  this.indexBarWidth,
  this.indexBarItemHeight,
  this.indexBarBackgroundColor,
  this.indexBarTextStyle,
  this.itemSelectedIconWidget,
  this.itemSelectedTextStyle,
  this.itemUnSelectedTextStyle,
  this.itemClickListener,
}) : super(key: key);