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