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

description

String getborderRightWidth

override

Gets the value of "border-right-width"

Implementation

String get borderRightWidth => this._borderRightWidth;

setborderRightWidth (String? value)

override

Sets the value of "border-right-width"

Implementation

set borderRightWidth(String? value) {
  _borderRightWidth = value == null ? '' : value;
}