TreeColumn constructor
TreeColumn({
- required Widget widget,
- double? autoSizeWidth,
- ColumnAutoSizeWidthBuilder? autoSizeWidthBuilder,
- Object? sortValue,
- Object? filterValue,
- TreeDataTableCellCallback? onTap,
- TreeDataTableCellCallback? onDoubleTap,
- TreeDataTableCellCallback? onSecondaryTap,
- TreeDataTableCellCallback? onHover,
Creates a new instance of TreeColumn
Implementation
TreeColumn({
required this.widget,
this.autoSizeWidth,
this.autoSizeWidthBuilder,
this.sortValue,
this.filterValue,
this.onTap,
this.onDoubleTap,
this.onSecondaryTap,
this.onHover,
}) : assert(autoSizeWidth == null || (autoSizeWidth.isFinite && autoSizeWidth >= 0));