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

description

String getborderRight

override

Gets the value of "border-right"

Implementation

String get borderRight => this._borderRight;

setborderRight (String? value)

override

Sets the value of "border-right"

Implementation

set borderRight(String? value) {
  _borderRight = value == null ? '' : value;
}