CityPickerWidget constructor

const CityPickerWidget({
  1. Key? key,
  2. double? height,
  3. double? titleHeight,
  4. double? corner,
  5. Color? backgroundColor,
  6. double? paddingLeft,
  7. Widget? titleWidget,
  8. String? selectText,
  9. Widget? closeWidget,
  10. double? tabHeight,
  11. bool? showTabIndicator,
  12. double? tabPadding,
  13. Color? tabIndicatorColor,
  14. double? tabIndicatorHeight,
  15. double? labelTextSize,
  16. Color? selectedLabelColor,
  17. Color? unselectedLabelColor,
  18. double? itemHeadHeight,
  19. Color? itemHeadBackgroundColor,
  20. Color? itemHeadLineColor,
  21. double? itemHeadLineHeight,
  22. TextStyle? itemHeadTextStyle,
  23. double? itemHeight,
  24. double? indexBarWidth,
  25. double? indexBarItemHeight,
  26. Color? indexBarBackgroundColor,
  27. TextStyle? indexBarTextStyle,
  28. Widget? itemSelectedIconWidget,
  29. TextStyle? itemSelectedTextStyle,
  30. TextStyle? itemUnSelectedTextStyle,
  31. List<AddressNode>? initialAddress,
  32. required CityPickerListener? cityPickerListener,
})

Implementation

const CityPickerWidget({
  Key? key,
  this.height,
  this.titleHeight,
  this.corner,
  this.backgroundColor,
  this.paddingLeft,
  this.titleWidget,
  this.selectText,
  this.closeWidget,
  this.tabHeight,
  this.showTabIndicator,
  this.tabPadding,
  this.tabIndicatorColor,
  this.tabIndicatorHeight,
  this.labelTextSize,
  this.selectedLabelColor,
  this.unselectedLabelColor,
  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.initialAddress,
  required this.cityPickerListener,
}) : super(key: key);