OptionColumnPanelWidget constructor

const OptionColumnPanelWidget({
  1. Key? key,
  2. required List<ItemOption> items,
  3. required double itemWidth,
  4. required double itemHeight,
  5. Color? backgroundColor,
  6. Color itemDisableColor = Colors.black12,
  7. double dividerHeight = 0,
  8. Color dividerColor = Colors.white,
  9. TextStyle textStyle = const TextStyle(color: Colors.white, fontSize: 12),
  10. EdgeInsetsGeometry padding = EdgeInsets.zero,
  11. OnItemOptionClickCall? optionClickCall,
  12. OptionColumnPanelBuildCall? buildCall,
})

Implementation

const OptionColumnPanelWidget(
    {Key? key,
    required this.items,
    required this.itemWidth,
    required this.itemHeight,
    this.backgroundColor,
    this.itemDisableColor = Colors.black12,
    this.dividerHeight = 0,
    this.dividerColor = Colors.white,
    this.textStyle = const TextStyle(color: Colors.white, fontSize: 12),
    this.padding = EdgeInsets.zero,
    this.optionClickCall,
    this.buildCall})
    : super(key: key);