CirclePackScope constructor

const CirclePackScope({
  1. Key? key,
  2. required List<CircleNode> children,
  3. required String title,
  4. required CirclePackChartController controller,
  5. required Widget child,
})

Implementation

const CirclePackScope({
  super.key,
  required this.children,
  required this.title,
  required this.controller,
  required super.child,
});