ItemWidget constructor

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

Implementation

ItemWidget({
  this.height,
  this.index,
  this.list,
  this.title,
  this.selectText,
  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,
});