borderStyle property Null safety

String borderStyle
override

Gets the value of "border-style"

Implementation

String get borderStyle => this._borderStyle;
void borderStyle= (String? value)
override

Sets the value of "border-style"

Implementation

set borderStyle(String? value) {
  _borderStyle = value == null ? '' : value;
}