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