borderwidth property

double? get borderwidth

Implementation

double? get borderwidth {
  if (_borderwidth == null) return 1;
  return _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);
  }
}