thickness property
The number of rows actually drawn.
Implementation
int get thickness => _thickness;
Sets the thickness and marks layout as needed.
Implementation
set thickness(int value) {
if (_thickness == value) return;
_thickness = value;
markNeedsLayout();
}