FunnelChartWidget constructor

const FunnelChartWidget({
  1. Key? key,
  2. required List<PieData> data,
  3. String? title,
  4. String? subtitle,
  5. Widget? header,
  6. Widget? footer,
  7. PieSegmentCallback? onSegmentTap,
  8. bool isLoading = false,
  9. bool isError = false,
  10. double? height,
  11. EdgeInsets? padding,
  12. EdgeInsets? margin,
  13. ChartsConfig? config,
})

Implementation

const FunnelChartWidget({
  super.key,
  required this.data,
  this.title,
  this.subtitle,
  this.header,
  this.footer,
  this.onSegmentTap,
  this.isLoading = false,
  this.isError = false,
  this.height,
  this.padding,
  this.margin,
  this.config,
});