borderLeftStyle 属性

String borderLeftStyle
覆盖

获取 "border-left-style" 的值

实现

String get borderLeftStyle => this._borderLeftStyle;
void borderLeftStyle=(String? value)
覆盖

设置 "border-left-style" 的值

实现

set borderLeftStyle(String? value) {
  _borderLeftStyle = value == null ? '' : value;
}