outline property Null safety

String outline
override

Gets the value of "outline"

Implementation

String get outline => this._outline;
void outline=(String? value)
override

Sets the value of "outline"

Implementation

set outline(String? value) {
  _outline = value == null ? '' : value;
}