borderBottomWidth 属性

String borderBottomWidth
覆盖

获取 "border-bottom-width" 的值

实现

String get borderBottomWidth => this._borderBottomWidth;
void borderBottomWidth=(String? value)
覆盖

设置 "border-bottom-width" 的值

实现

set borderBottomWidth(String? value) {
  _borderBottomWidth = value == null ? '' : value;
}