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