toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bubbleBorderColor = this.bubbleBorderColor;
  final bubbleBorderColorStyle = this.bubbleBorderColorStyle;
  final bubbleLabels = this.bubbleLabels;
  final bubbleMaxRadiusSize = this.bubbleMaxRadiusSize;
  final bubbleMinRadiusSize = this.bubbleMinRadiusSize;
  final bubbleOpacity = this.bubbleOpacity;
  final bubbleSizes = this.bubbleSizes;
  final bubbleTextStyle = this.bubbleTextStyle;
  final domain = this.domain;
  final groupIds = this.groupIds;
  final legendPosition = this.legendPosition;
  final series = this.series;
  return {
    'bubbleBorderColor': ?bubbleBorderColor,
    'bubbleBorderColorStyle': ?bubbleBorderColorStyle,
    'bubbleLabels': ?bubbleLabels,
    'bubbleMaxRadiusSize': ?bubbleMaxRadiusSize,
    'bubbleMinRadiusSize': ?bubbleMinRadiusSize,
    'bubbleOpacity': ?bubbleOpacity,
    'bubbleSizes': ?bubbleSizes,
    'bubbleTextStyle': ?bubbleTextStyle,
    'domain': ?domain,
    'groupIds': ?groupIds,
    'legendPosition': ?legendPosition,
    'series': ?series,
  };
}