TreeColumn constructor

TreeColumn({
  1. required Widget widget,
  2. double? autoSizeWidth,
  3. ColumnAutoSizeWidthBuilder? autoSizeWidthBuilder,
  4. Object? sortValue,
  5. Object? filterValue,
  6. TreeDataTableCellCallback? onTap,
  7. TreeDataTableCellCallback? onDoubleTap,
  8. TreeDataTableCellCallback? onSecondaryTap,
  9. 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));