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

description

String getborderLeftWidth

override

Gets the value of "border-left-width"

Implementation

String get borderLeftWidth => this._borderLeftWidth;

setborderLeftWidth (String? value)

override

Sets the value of "border-left-width"

Implementation

set borderLeftWidth(String? value) {
  _borderLeftWidth = value == null ? '' : value;
}