BubbleSeries constructor

const BubbleSeries({
  1. Key? key,
  2. required List<BubbleDataPoint> data,
  3. Color color = Colors.blue,
  4. Color? borderColor,
  5. double borderWidth = 1,
  6. double minRadius = 5,
  7. double maxRadius = 30,
  8. double opacity = 0.6,
  9. Color colorAccessor(
    1. BubbleDataPoint point
    )?,
})

Implementation

const BubbleSeries({
  super.key,
  required this.data,
  this.color = Colors.blue,
  this.borderColor,
  this.borderWidth = 1,
  this.minRadius = 5,
  this.maxRadius = 30,
  this.opacity = 0.6,
  this.colorAccessor,
});