radius property

String radius

Implementation

String get radius => _radius;
void radius=(String value)

Implementation

set radius(String value) {
  if (_radius != value) {
    _radius = value;
    markNeedsLayout();
  }
}