indentation property

double indentation

The number of pixels by which child nodes will be offset in the cross axis based on rowDepths.

If zero, children can alternatively be offset in TreeView.treeRowBuilder for more options to customize the indented space.

Implementation

double get indentation => _indentation;
void indentation=(double value)

Implementation

set indentation(double value) {
  if (_indentation == value) {
    return;
  }
  assert(indentation >= 0.0);
  _indentation = value;
  markNeedsLayout();
}