borderBottomStyle property - CssStyleDeclaration class - dart:html library (original) (raw)

description

String getborderBottomStyle

override

Gets the value of "border-bottom-style"

Implementation

String get borderBottomStyle => this._borderBottomStyle;

setborderBottomStyle (String? value)

override

Sets the value of "border-bottom-style"

Implementation

set borderBottomStyle(String? value) {
  _borderBottomStyle = value == null ? '' : value;
}