borderTopStyle 属性

String borderTopStyle
重写

获取 "border-top-style" 的值

实现

String get borderTopStyle => this._borderTopStyle;
void borderTopStyle=(String? value)
重写

设置 "border-top-style" 的值

实现

set borderTopStyle(String? value) {
  _borderTopStyle = value == null ? '' : value;
}