borderRightWidth property

String get borderRightWidth
override

Gets the value of "border-right-width"

Implementation

String get borderRightWidth => this._borderRightWidth;
set borderRightWidth (String? value)
override

Sets the value of "border-right-width"

Implementation

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