BubbleChartLayout constructor

const BubbleChartLayout({
  1. Key? key,
  2. required List<BubbleNode> children,
  3. double radius(
    1. BubbleNode
    )?,
  4. Duration? duration,
  5. double stretchFactor = 1.0,
})

Implementation

const BubbleChartLayout({
  super.key,
  required this.children,
  this.radius,
  this.duration,
  this.stretchFactor = 1.0,
});