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

description

String getborderWidth

override

Gets the value of "border-width"

Implementation

String get borderWidth => this._borderWidth;

setborderWidth (String? value)

override

Sets the value of "border-width"

Implementation

set borderWidth(String? value) {
  _borderWidth = value == null ? '' : value;
}