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