borderRadius property Null safety
The border radius of the rounded corners.
Values are clamped so that horizontal and vertical radii sums do not exceed width/height.
This value is ignored if clipper is non-null.
Implementation
BorderRadiusGeometry get borderRadius => _borderRadius;
Implementation
set borderRadius(BorderRadiusGeometry value) {
assert(value != null);
if (_borderRadius == value) {
return;
}
_borderRadius = value;
_markNeedsClip();
}