radius property
double
get
radius
Implementation
double get radius => _radius;
set
radius
(double value)
Implementation
set radius(double value) {
assert(value > 0);
if (value == _radius) return;
_radius = value;
markNeedsLayout();
markNeedsSemanticsUpdate();
}