SimpleBubbleChartData constructor

const SimpleBubbleChartData({
  1. required String label,
  2. required double x,
  3. required double y,
  4. required double size,
  5. String? group,
  6. Color? color,
})

Implementation

const SimpleBubbleChartData({
  required this.label,
  required this.x,
  required this.y,
  required this.size,
  this.group,
  this.color,
});