radius property
Radius?
get
radius
Radius of corners if the scrollbar should have rounded corners.
Scrollbar will be rectangular if radius is null.
Implementation
Radius? get radius => _radius;
set
radius
(Radius? value)
Implementation
set radius(Radius? value) {
assert(shape == null || value == null);
if (radius == value) {
return;
}
_radius = value;
notifyListeners();
}