outlineColor property

String get outlineColor
override

Gets the value of "outline-color"

Implementation

String get outlineColor => this._outlineColor;
set outlineColor (String? value)
override

Sets the value of "outline-color"

Implementation

set outlineColor(String? value) {
  _outlineColor = value == null ? '' : value;
}