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