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

description

String getborderRightColor

override

Gets the value of "border-right-color"

Implementation

String get borderRightColor => this._borderRightColor;

setborderRightColor (String? value)

override

Sets the value of "border-right-color"

Implementation

set borderRightColor(String? value) {
  _borderRightColor = value == null ? '' : value;
}