PlutoRowGroupTreeDelegate constructor

PlutoRowGroupTreeDelegate({
  1. required int? resolveColumnDepth(
    1. PlutoColumn column
    ),
  2. required bool showText(
    1. PlutoCell cell
    ),
  3. bool showFirstExpandableIcon = false,
  4. bool showCount = true,
  5. bool enableCompactCount = true,
  6. PlutoRowGroupOnToggled? onToggled,
})

Implementation

PlutoRowGroupTreeDelegate({
  required this.resolveColumnDepth,
  required this.showText,
  this.showFirstExpandableIcon = false,
  this.showCount = true,
  this.enableCompactCount = true,
  super.onToggled,
});