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

description

String getborderStyle

override

Gets the value of "border-style"

Implementation

String get borderStyle => this._borderStyle;

setborderStyle (String? value)

override

Sets the value of "border-style"

Implementation

set borderStyle(String? value) {
  _borderStyle = value == null ? '' : value;
}