indentWidth property

double get indentWidth

Horizontal indent per depth level in logical pixels.

Mutable at runtime. getIndent reads this live, so setting a new value only needs to trigger a relayout on subscribers — fires the animation-tick channel (layout-only) rather than the structural channel so children aren't rebuilt unnecessarily.

Implementation

double get indentWidth => _indentWidth;
set indentWidth (double value)

Implementation

set indentWidth(double value) {
  if (value == _indentWidth) {
    return;
  }
  _indentWidth = value;
  _notifyAnimationListeners();
}