toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final color = this.color;
final dashStyle = this.dashStyle;
final propertyState = this.propertyState;
final width = this.width;
return {
'color': ?color,
'dashStyle': ?dashStyle,
'propertyState': ?propertyState,
'width': ?width,
};
}