dividerHeight property

int get dividerHeight

The total height of the divider area.

Implementation

int get dividerHeight => _dividerHeight;
set dividerHeight (int value)

Sets the total height and marks layout as needed.

Implementation

set dividerHeight(int value) {
  if (_dividerHeight == value) return;
  _dividerHeight = value;
  markNeedsLayout();
}