thickness property

int get thickness
inherited

The number of rows actually drawn.

Implementation

int get thickness => _thickness;
set thickness (int value)
inherited

Sets the thickness and marks layout as needed.

Implementation

set thickness(int value) {
  if (_thickness == value) return;
  _thickness = value;
  markNeedsLayout();
}