ColumnLineResizer constructor

const ColumnLineResizer({
  1. Key? key,
  2. required int number,
  3. bool isExpanded = false,
  4. double touchY = 0,
  5. bool? isSelected,
  6. bool? showIcon,
  7. Color? color,
  8. required dynamic onDrag(
    1. DragUpdateDetails,
    2. int
    ),
  9. required dynamic onDragEnd(
    1. int
    ),
  10. required dynamic onHover(
    1. int
    ),
})

Implementation

const ColumnLineResizer(
    {Key? key,
    required this.number,
    this.isExpanded = false,
    this.touchY = 0,
    this.isSelected,
    this.showIcon,
    this.color,
    required this.onDrag,
    required this.onDragEnd,
    required this.onHover})
    : super(key: key);