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);
  }
}