toJson method

Map<String, dynamic> toJson()

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,
  };
}