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

description

String getborderLeftColor

override

Gets the value of "border-left-color"

Implementation

String get borderLeftColor => this._borderLeftColor;

setborderLeftColor (String? value)

override

Sets the value of "border-left-color"

Implementation

set borderLeftColor(String? value) {
  _borderLeftColor = value == null ? '' : value;
}