BubbleChart constructor

const BubbleChart({
  1. Key? key,
  2. required ChartConfig config,
  3. ChartTheme? theme,
  4. double minRadius = 4,
  5. double maxRadius = 24,
  6. String sizeKey = kBubbleSizeKey,
})

Implementation

const BubbleChart({
  super.key,
  required this.config,
  this.theme,
  this.minRadius = 4,
  this.maxRadius = 24,
  this.sizeKey = kBubbleSizeKey,
});