TreeColumn constructor
TreeColumn({
- required Widget widget,
- Widget? autoSizeWidget,
- double? autoSizeWidth,
- ColumnAutoSizeWidthBuilder? autoSizeWidthBuilder,
- Object? filterValue,
- required ValueNotifier<
double?> width, - required ValueNotifier<
bool> visible, - required ValueNotifier<
bool> pinLeft, - required ValueNotifier<
bool> pinRight,
Creates a new instance of TreeColumn
Implementation
TreeColumn({
required this.widget,
Widget? autoSizeWidget,
this.autoSizeWidth,
this.autoSizeWidthBuilder,
this.filterValue,
required this.width,
required this.visible,
required this.pinLeft,
required this.pinRight,
}) : autoSizeWidget = autoSizeWidget ?? widget,
assert(!(pinLeft.value && pinRight.value), 'pinLeft and pinRight cannot both be true');