dividerWidth property

int get dividerWidth

The total width of the divider area.

Implementation

int get dividerWidth => _dividerWidth;
set dividerWidth (int value)

Sets the total width and marks layout as needed.

Implementation

set dividerWidth(int value) {
  if (_dividerWidth == value) return;
  _dividerWidth = value;
  markNeedsLayout();
}