radius property
double?
get
radius
Implementation
double? get radius {
if (begin == null || end == null) {
return null;
}
if (_dirty) {
_initialize();
}
return _radius;
}
double? get radius {
if (begin == null || end == null) {
return null;
}
if (_dirty) {
_initialize();
}
return _radius;
}