radius property
double?
get
radius
Implementation
double? get radius => radius_?.get();
set
radius
(dynamic v)
Implementation
set radius(dynamic v) {
if (radius_ != null) {
radius_!.set(v);
} else if (v != null) {
radius_ = DoubleObservable(Binding.toKey(id, 'radius'), v, scope: scope);
}
}