FastPieChart constructor

const FastPieChart({
  1. Key? key,
  2. required List<FastChartData> data,
  3. bool animate = false,
  4. double width = 200,
  5. double height = 200,
})

Implementation

const FastPieChart({
  super.key,
  required this.data,
  this.animate = false,
  this.width = 200,
  this.height = 200,
});