toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final colorSuggested = this.colorSuggested;
final dashStyleSuggested = this.dashStyleSuggested;
final propertyStateSuggested = this.propertyStateSuggested;
final widthSuggested = this.widthSuggested;
return {
'colorSuggested': ?colorSuggested,
'dashStyleSuggested': ?dashStyleSuggested,
'propertyStateSuggested': ?propertyStateSuggested,
'widthSuggested': ?widthSuggested,
};
}