toJson method

Map<String, dynamic> toJson()

Implementation

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