outline property Null safety
override
Gets the value of "outline"
Implementation
String get outline => this._outline;
override
Sets the value of "outline"
Implementation
set outline(String? value) {
_outline = value == null ? '' : value;
}