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

description

String getborderTopStyle

override

Gets the value of "border-top-style"

Implementation

String get borderTopStyle => this._borderTopStyle;

setborderTopStyle (String? value)

override

Sets the value of "border-top-style"

Implementation

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