thickness property
Thickness of the scrollbar in its cross-axis in logical pixels. Mustn't be null.
Implementation
double get thickness => _thickness;
Implementation
set thickness(double value) {
if (thickness == value) {
return;
}
_thickness = value;
notifyListeners();
}