toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dashStyle = this.dashStyle;
  final outlineFill = this.outlineFill;
  final propertyState = this.propertyState;
  final weight = this.weight;
  return {
    'dashStyle': ?dashStyle,
    'outlineFill': ?outlineFill,
    'propertyState': ?propertyState,
    'weight': ?weight,
  };
}