borderLeftWidth 属性

String borderLeftWidth
重写

获取 "border-left-width" 的值

实现

String get borderLeftWidth => this._borderLeftWidth;
void borderLeftWidth=(String? value)
重写

设置 "border-left-width" 的值

实现

set borderLeftWidth(String? value) {
  _borderLeftWidth = value == null ? '' : value;
}